#if wxUSE_DATAOBJ
+#include "wx/dataobj.h"
+
#ifndef WX_PRECOMP
#include "wx/app.h"
- #include "wx/debug.h"
#endif
-#include "wx/dataobj.h"
-
// ----------------------------------------------------------------------------
// lists
// ----------------------------------------------------------------------------
#include "wx/imagbmp.h"
#include "wx/bitmap.h"
-#include "wx/debug.h"
#include "wx/filefn.h"
#include "wx/wfstream.h"
#include "wx/intl.h"
#include "wx/image.h"
#include "wx/bitmap.h"
-#include "wx/debug.h"
#include "wx/filefn.h"
#include "wx/wfstream.h"
#include "wx/intl.h"
#endif
#include "wx/bitmap.h"
-#include "wx/debug.h"
// NB: Some compilers define boolean type in Windows headers
// (e.g. Watcom C++, but not Open Watcom).
#include "wx/imagpng.h"
#include "wx/bitmap.h"
-#include "wx/debug.h"
#include "png.h"
#include "wx/filefn.h"
#include "wx/wfstream.h"
#endif
#include "wx/bitmap.h"
-#include "wx/debug.h"
+
extern "C"
{
#include "tiff.h"
#ifndef WX_PRECOMP
#include "wx/app.h"
- #include "wx/debug.h"
#include "wx/filefn.h"
#include "wx/log.h"
#include "wx/thread.h"
wxEntryCleanup();
}
}
-
#include "wx/string.h"
#include "wx/intl.h"
#include "wx/log.h"
- #include "wx/debug.h"
#include "wx/utils.h"
#include "wx/app.h"
#endif // WX_PRECOMP
#include "wx/hash.h"
#include "wx/intl.h"
#include "wx/settings.h"
+ #include "wx/log.h"
#endif
#include "wx/checkbox.h"
#include "wx/choice.h"
#include "wx/checkbox.h"
#include "wx/stattext.h"
-#include "wx/debug.h"
-#include "wx/log.h"
#include "wx/longlong.h"
#include "wx/msgdlg.h"
#include "wx/sizer.h"
#endif
#ifndef __WXWINCE__
-#include <sys/types.h>
-#include <sys/stat.h>
+ #include <sys/types.h>
+ #include <sys/stat.h>
#endif
#ifdef __UNIX__
#include "wx/app.h"
#endif
-#include "wx/debug.h"
#include "wx/mstream.h"
#include "wx/image.h"
#include "wx/uri.h"
#endif
#include "wx/fontutil.h"
-#include "wx/debug.h"
#include "wx/msgdlg.h"
#include "wx/gtk/private.h"
/////////////////////////////////////////////////////////////////////////////
-// Name: gtk/settings.cpp
+// Name: src/gtk/settings.cpp
// Purpose:
// Author: Robert Roebling
// Modified by: Mart Raudsepp (GetMetric)
#include "wx/wxprec.h"
#include "wx/settings.h"
-#include "wx/debug.h"
+
#include "wx/cmndata.h"
#include "wx/fontutil.h"
#include "wx/toplevel.h"
green = col[state].green;
blue = col[state].blue;
- ok = TRUE;
+ ok = true;
}
else
{
- ok = FALSE;
+ ok = false;
}
gtk_widget_destroy( widget );
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;
}
}
#include "wx/app.h"
#endif
-#include "wx/debug.h"
#include "wx/mstream.h"
#include "wx/image.h"
#include "wx/uri.h"
#endif
#include "wx/fontutil.h"
-#include "wx/debug.h"
#include "wx/msgdlg.h"
#include "wx/gtk1/private.h"
/////////////////////////////////////////////////////////////////////////////
-// Name: gtk/settings.cpp
+// Name: src/gtk1/settings.cpp
// Purpose:
// Author: Robert Roebling
// Modified by: Mart Raudsepp (GetMetric)
#include "wx/wxprec.h"
#include "wx/settings.h"
-#include "wx/debug.h"
+
#include "wx/cmndata.h"
#include "wx/fontutil.h"
#include "wx/toplevel.h"
green = col[state].green;
blue = col[state].blue;
- ok = TRUE;
+ ok = true;
}
else
{
- ok = FALSE;
+ ok = false;
}
gtk_widget_destroy( widget );
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;
}
}