wx/debug.h is always unconditionally included by wx/defs.h
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39318 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: gtk/settings.cpp
|
||||
// Name: src/gtk/settings.cpp
|
||||
// Purpose:
|
||||
// Author: Robert Roebling
|
||||
// Modified by: Mart Raudsepp (GetMetric)
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "wx/wxprec.h"
|
||||
|
||||
#include "wx/settings.h"
|
||||
#include "wx/debug.h"
|
||||
|
||||
#include "wx/cmndata.h"
|
||||
#include "wx/fontutil.h"
|
||||
#include "wx/toplevel.h"
|
||||
@@ -131,11 +131,11 @@ static bool GetColourFromGTKWidget(int& red, int& green, int& blue,
|
||||
green = col[state].green;
|
||||
blue = col[state].blue;
|
||||
|
||||
ok = TRUE;
|
||||
ok = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
ok = FALSE;
|
||||
ok = false;
|
||||
}
|
||||
|
||||
gtk_widget_destroy( widget );
|
||||
@@ -642,12 +642,12 @@ bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
|
||||
switch (index)
|
||||
{
|
||||
case wxSYS_CAN_ICONIZE_FRAME:
|
||||
return FALSE;
|
||||
return false;
|
||||
|
||||
case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
|
||||
return TRUE;
|
||||
return true;
|
||||
|
||||
default:
|
||||
return FALSE;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user