]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/notebook.cpp
fixing compilo for 10.5
[wxWidgets.git] / src / univ / notebook.cpp
index 407dc958ae3aee1c60cfaeefb4d53f8d4bc9094c..4fe59855e84baf2c955379e05b470ad49bff901d 100644 (file)
@@ -585,7 +585,7 @@ void wxNotebook::DoDraw(wxControlRenderer *renderer)
 int wxNotebook::HitTest(const wxPoint& pt, long *flags) const
 {
     if ( flags )
-        *flags = wxNB_HITTEST_NOWHERE;
+        *flags = wxBK_HITTEST_NOWHERE;
 
     // first check that it is in this window at all
     if ( !GetClientRect().Inside(pt) )
@@ -631,7 +631,7 @@ int wxNotebook::HitTest(const wxPoint& pt, long *flags) const
             if ( flags )
             {
                 // TODO: be more precise
-                *flags = wxNB_HITTEST_ONITEM;
+                *flags = wxBK_HITTEST_ONITEM;
             }
 
             return n;