]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/tab/tab.cpp
HasFlag is not set at this point
[wxWidgets.git] / samples / tab / tab.cpp
index 13d24ec50627acd376dc8c241d13af40ba0a57b9..7b37b5c06e824258856ec0c15695f5303a4b7ba6 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     01/02/97
 // RCS-ID:      $Id$
 // Copyright:   (c)
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/tab.h"
 #include "tab.h"
 
+#if wxUSE_TAB_DIALOG == 0
+#error "wxUSE_TAB_DIALOG must be defined as 1 in setup.h."
+#endif
+
 // If 1, use a dialog. Otherwise use a frame.
 #define USE_TABBED_DIALOG 1
 
@@ -35,7 +39,7 @@ bool MyApp::OnInit(void)
 {
   // Create the main window
 #if USE_TABBED_DIALOG
-  dialog = new MyDialog((wxFrame *) NULL, -1, (char *) "Tabbed Dialog", wxPoint(-1, -1), wxSize(365, 390), wxDIALOG_MODAL|wxDEFAULT_DIALOG_STYLE);
+  dialog = new MyDialog((wxFrame *) NULL, wxID_ANY, (char *) "Tabbed Dialog", wxPoint(-1, -1), wxSize(365, 390));
 
   dialog->ShowModal();
 
@@ -166,7 +170,7 @@ void MyDialog::Init(void)
   
   // Note, omit the wxTAB_STYLE_COLOUR_INTERIOR, so we will guarantee a match
   // with the panel background, and save a bit of time.
-  wxPanelTabView *view = new wxPanelTabView(this, wxTAB_STYLE_DRAW_BOX);
+  wxPanelTabView *view = new wxPanelTabView((wxPanel *)this, wxTAB_STYLE_DRAW_BOX);
 
   wxGetApp().InitTabView(view, this);