// Modified by:
// Created: 06/21/02
// RCS-ID: $Id$
-// Copyright: (c) wxWindows team
+// Copyright: (c) wxWidgets team
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
{
bool is_use_display =
#if wxUSE_DISPLAY
- TRUE
+ true
#else
- FALSE
+ false
#endif
;
if( !is_use_display )
wxRect r = display.GetGeometry();
wxLogDebug ( _T("Display #%i \"%s\" = ( %i, %i, %i, %i ) @ %i bits"),
i, display.GetName().c_str(), r.GetLeft(), r.GetTop(), r.GetWidth(), r.GetHeight(),
- display.GetDepth() );
+ display.GetCurrentMode().GetDepth() );
i++;
}
}
#endif
- return FALSE;
+ return false;
}