/////////////////////////////////////////////////////////////////////////////
-// Name: settings.cpp
+// Name: src/os2/settings.cpp
// Purpose: wxSettings
// Author: David Webster
// Modified by:
#include "wx/wxprec.h"
#ifndef WX_PRECOMP
-#include <stdio.h>
-#include "wx/defs.h"
-#include "wx/pen.h"
-#include "wx/brush.h"
-#include "wx/gdicmn.h"
+ #include <stdio.h>
+ #include "wx/pen.h"
+ #include "wx/brush.h"
+ #include "wx/gdicmn.h"
+ #include "wx/window.h"
+ #include "wx/settings.h"
#endif
#include "wx/module.h"
-#include "wx/settings.h"
-#include "wx/window.h"
#include "wx/os2/private.h"
// the module which is used to clean up wxSystemSettings data (this is a
bool wxSystemSettingsModule::OnInit()
{
- return TRUE;
+ return true;
}
void wxSystemSettingsModule::OnExit()
// TODO case wxSYS_PENWINDOWS_PRESENT:
// TODO case wxSYS_SHOW_SOUNDS:
// TODO case wxSYS_SWAP_BUTTONS:
+
+ default:
+ break;
}
return -1; // unsupported metric
}
case wxSYS_CAN_ICONIZE_FRAME:
return true;
- case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
- return false;
+ // TODO case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
+ // TODO case wxSYS_TABLET_PRESENT:
+
+ default:
+ break;
}
return false;