]> git.saurik.com Git - wxWidgets.git/commitdiff
Allow for compilation with wxUSE_TOOLTIPS=0
authorJouk Jansen <joukj@hrem.nano.tudelft.nl>
Mon, 21 May 2012 08:39:03 +0000 (08:39 +0000)
committerJouk Jansen <joukj@hrem.nano.tudelft.nl>
Mon, 21 May 2012 08:39:03 +0000 (08:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71521 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/aui/auibook.cpp

index 6471c076c4339e1f5e9c88a8926781dedddb6ec8..9fc2e90add282e4fb163876c8a10308f06e2f3bf 100644 (file)
@@ -1238,7 +1238,9 @@ void wxAuiTabCtrl::OnMotion(wxMouseEvent& evt)
     }
 
     wxWindow* wnd = NULL;
-    if (evt.Moving() && TabHitTest(evt.m_x, evt.m_y, &wnd))
+
+#if wxUSE_TOOLTIPS
+   if (evt.Moving() && TabHitTest(evt.m_x, evt.m_y, &wnd))
     {
         wxString tooltip(m_pages[GetIdxFromWindow(wnd)].tooltip);
 
@@ -1249,7 +1251,8 @@ void wxAuiTabCtrl::OnMotion(wxMouseEvent& evt)
     }
     else
         UnsetToolTip();
-
+#endif
+   
     if (!evt.LeftIsDown() || m_clickPt == wxDefaultPosition)
         return;