X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8b6d59d515f93852b4a793a9893f36df6a957e2..227b5cd72fe18864553ab0fc0688bb017f349e61:/include/wx/time.h diff --git a/include/wx/time.h b/include/wx/time.h index ec06d912bb..49dbc62105 100644 --- a/include/wx/time.h +++ b/include/wx/time.h @@ -55,8 +55,11 @@ public: wxTime(const wxDate&, hourTy h =0, minuteTy m =0, secondTy s=0, bool dst =FALSE); // Convert to string +#ifndef __SALFORDC__ operator char * (void); operator wxDate() const; +#endif + bool operator<(const wxTime& t) const { return sec < t.sec; } bool operator<=(const wxTime& t) const { return sec <= t.sec; } bool operator>(const wxTime& t) const { return sec > t.sec; }