]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stubs/notebook.cpp
some clean up of the code
[wxWidgets.git] / src / stubs / notebook.cpp
index aecb879f4bf2a2c778d750c183db3d3ea9eaf2ad..cd85a27ad717989fabcf7d2dcda67f789866749f 100644 (file)
@@ -97,10 +97,6 @@ bool wxNotebook::Create(wxWindow *parent,
 
     m_windowId = id == -1 ? NewControlId() : id;
 
-    // colors and font
-    m_backgroundColour = wxColour(GetSysColor(COLOR_BTNFACE));
-    m_foregroundColour = *wxBLACK ;
-
     // style
     m_windowStyle = style;
 
@@ -278,7 +274,7 @@ void wxNotebook::OnSize(wxSizeEvent& event)
     SetSelection(nSel);
 
     // fit the notebook page to the tab control's display area
-    int w, hl
+    int w, h;
     GetSize(&w, &h);
 
     uint nCount = m_aPages.Count();