]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/apptrait.h
copy the list in wxList::operator=(), for consistency with typed macro-based lists
[wxWidgets.git] / include / wx / palmos / apptrait.h
index cfe8fde4f93510b0e0722047aed5de87a536be64..af90da7225f63fda43eca8597daff38e93fba446 100644 (file)
@@ -22,7 +22,9 @@ public:
     virtual void *BeforeChildWaitLoop();
     virtual void AlwaysYield();
     virtual void AfterChildWaitLoop(void *data);
-
+#if wxUSE_TIMER
+    virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer) { return NULL; };
+#endif
     virtual bool DoMessageFromThreadWait();
 };
 
@@ -34,7 +36,10 @@ public:
     virtual void *BeforeChildWaitLoop();
     virtual void AlwaysYield();
     virtual void AfterChildWaitLoop(void *data);
-
+#if wxUSE_TIMER
+    // there is no wxTimer support yet
+    virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
+#endif
     virtual bool DoMessageFromThreadWait();
     virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const;
 };