git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27436
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
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;
}