]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/notebook.h
add SetCharIncludes and SetCharExcludes utilities to wxTextValidator; use iterators...
[wxWidgets.git] / interface / wx / notebook.h
index 04f135c8088419972f327651f9f0284610bb6c09..a04135c4ace70833df99f22c7604fb1dc183a2d2 100644 (file)
@@ -65,7 +65,7 @@
 
     To disable themed pages globally:
     @code
-    wxSystemOptions::SetOption(wxT("msw.notebook.themed-background"), 0);
+    wxSystemOptions::SetOption("msw.notebook.themed-background", 0);
     @endcode
 
     Set the value to 1 to enable it again.
@@ -73,7 +73,7 @@
     overall theme, use:
     @code
     wxColour col = notebook->GetThemeBackgroundColour();
-    if (col.Ok())
+    if (col.IsOk())
     {
         page->SetBackgroundColour(col);
     }
@@ -86,6 +86,7 @@
 
     @library{wxcore}
     @category{miscwnd}
+    @appearance{notebook.png}
 
     @see wxBookCtrl, wxBookCtrlEvent, wxImageList, @ref page_samples_notebook
 */