]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/classic/tooltip.cpp
Fixed OpenWatcom (strange) scope related crash.
[wxWidgets.git] / src / mac / classic / tooltip.cpp
index 9c7c664c2a51c1860fc4aba3f802c4d97ffe8277..4e66d906cb47ca1dac1366c8d732ce1cd24d1c55 100644 (file)
 
 #if wxUSE_TOOLTIPS
 
-#include "wx/app.h"
-#include "wx/dc.h"
-#include "wx/window.h"
 #include "wx/tooltip.h"
-#include "wx/timer.h"
+
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+    #include "wx/window.h"
+    #include "wx/dc.h"
+    #include "wx/timer.h"
+#endif
+
 #include "wx/geometry.h"
 #include "wx/mac/uma.h"
 
@@ -217,7 +221,7 @@ const short kTipOffset = 5 ;
 
 void wxMacToolTip::Draw()
 {
-    if ( m_label.Length() == 0 )
+    if ( m_label.empty() )
         return ;
 
     if ( m_window == s_ToolTipWindowRef )
@@ -258,7 +262,7 @@ void wxMacToolTip::Draw()
         short height = 0 ;
 
         int i = 0 ;
-        int length = m_label.Length() ;
+        int length = m_label.length() ;
         int width = 0 ;
         int thiswidth = 0 ;
         int laststop = 0 ;
@@ -404,4 +408,4 @@ void wxMacToolTip::Clear()
 #endif
 }
 
-#endif
+#endif // wxUSE_TOOLTIPS