]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/tab/tab.cpp
Tools
[wxWidgets.git] / samples / tab / tab.cpp
index 13d24ec50627acd376dc8c241d13af40ba0a57b9..c581ac1760d25889b79a797d9ef658a737437459 100644 (file)
 #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
 
@@ -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);