]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/notebook.cpp
update KDE guide link; added to the list of the 'Changes which are compatible' the...
[wxWidgets.git] / src / generic / notebook.cpp
index 04d8719747dcea1b7839da9c81bdcfdeda87e7be..29b5a4137d7638c669aa72a3591475f0f1909528 100644 (file)
@@ -102,7 +102,7 @@ private:
 
 static int GetPageId(wxTabView *tabview, wxNotebookPage *page)
 {
-    return wx_static_cast(wxNotebookTabView*, tabview)->GetId(page);
+    return static_cast<wxNotebookTabView*>(tabview)->GetId(page);
 }
 
 // ----------------------------------------------------------------------------
@@ -112,7 +112,7 @@ static int GetPageId(wxTabView *tabview, wxNotebookPage *page)
 // common part of all ctors
 void wxNotebook::Init()
 {
-    m_tabView = (wxNotebookTabView*) NULL;
+    m_tabView = NULL;
     m_nSelection = -1;
 }