// 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);
// 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;
}