]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/unix/private/timer.h
avoid causing idle event from GetValue(), fixes #11013
[wxWidgets.git] / include / wx / unix / private / timer.h
index 2249fe5c2ead33be2850f96cb4c4a7bcbf5f6dd6..d879f3640d594cf5a09eb61998cb0e1e46a8413b 100644 (file)
@@ -23,7 +23,9 @@ typedef wxMilliClock_t wxUsecClock_t;
 // wxTimer implementation class for Unix platforms
 // ----------------------------------------------------------------------------
 
-class wxUnixTimerImpl : public wxTimerImpl
+// NB: we have to export at least this symbol from the shared library, because
+//     it's used by wxDFB's wxCore
+class WXDLLIMPEXP_BASE wxUnixTimerImpl : public wxTimerImpl
 {
 public:
     wxUnixTimerImpl(wxTimer *timer);
@@ -37,7 +39,7 @@ public:
     // timer is running
     void MarkStopped()
     {
-        wxASSERT_MSG( m_isRunning, _T("stopping non-running timer?") );
+        wxASSERT_MSG( m_isRunning, wxT("stopping non-running timer?") );
 
         m_isRunning = false;
     }