diff options
| author | Manolo Gouy <Manolo> | 2017-03-14 17:51:20 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2017-03-14 17:51:20 +0000 |
| commit | 16b332662977b020e5c9624faf0beb5065cd1bfe (patch) | |
| tree | e441d724226f21129de2a7b354dd1aeeaf6c62cf /FL | |
| parent | b9b4d8537965d366b5fc408368282ef27f2c3686 (diff) | |
Give platform-independent default implementation to Fl_System_Driver::gettime()
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12198 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_System_Driver.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_System_Driver.H b/FL/Fl_System_Driver.H index 8a67ead8e..469128206 100644 --- a/FL/Fl_System_Driver.H +++ b/FL/Fl_System_Driver.H @@ -211,8 +211,8 @@ public: virtual void remove_fd(int); // the default implementation of open_callback() may be enough virtual void open_callback(void (*)(const char *)); - // get elapsed time since Jan 1st, 1970 - virtual void gettime(time_t *sec, int *usec) {} + // The default implementation may be enough. + virtual void gettime(time_t *sec, int *usec); }; #endif // FL_SYSTEM_DRIVER_H |
