From: Jouk Jansen Date: Mon, 21 May 2012 08:39:03 +0000 (+0000) Subject: Allow for compilation with wxUSE_TOOLTIPS=0 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d4df01f140c958b217c173b8debdb879ca5b1ad7 Allow for compilation with wxUSE_TOOLTIPS=0 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71521 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/aui/auibook.cpp b/src/aui/auibook.cpp index 6471c076c4..9fc2e90add 100644 --- a/src/aui/auibook.cpp +++ b/src/aui/auibook.cpp @@ -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;