]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/tooltip.cpp
Fix uninitialized variable warning in wxMSW wxFileSystemWatcher code.
[wxWidgets.git] / src / osx / carbon / tooltip.cpp
index 0b7630ac79655d2ed8a14207ff22dcefa55f4e60..0e642ec61250aeffcd6f0b494e53eeee78d1c9fc 100644 (file)
@@ -199,11 +199,7 @@ void wxMacToolTip::Setup( WindowRef win  , const wxString& text , const wxPoint&
 wxMacToolTip::~wxMacToolTip()
 {
 #if wxUSE_TIMER
-    if ( m_timer )
-    {
-        delete m_timer ;
-        m_timer = NULL;
-    }
+    wxDELETE(m_timer);
 #endif // wxUSE_TIMER
     if ( m_backpict )
         Clear() ;
@@ -251,11 +247,7 @@ void wxMacToolTip::Clear()
 {
     m_mark++ ;
 #if wxUSE_TIMER
-    if ( m_timer )
-    {
-        delete m_timer ;
-        m_timer = NULL ;
-    }
+    wxDELETE(m_timer);
 #endif // wxUSE_TIMER
     if ( !m_shown )
         return ;