// Default is 1
//
// Recommended setting: 1
+#ifdef __SMARTPHONE__
+#define wxUSE_STATUSBAR 0
+#else
#define wxUSE_STATUSBAR 1
+#endif
// Two status bar implementations are available under Win32: the generic one
// or the wrapper around native control. For native look and feel the native
#define wxUSE_TOOLBAR 1
#define wxUSE_TOOLBAR_NATIVE 1
-// this setting is obsolete, value is ignored
-#define wxUSE_BUTTONBAR 1
-
// wxNotebook is a control with several "tabs" located on one of its sides. It
// may be used ot logically organise the data presented to the user instead of
// putting everything in one huge dialog. It replaces wxTabControl and related