Removed warning for Darwin compilation from datetime.inl

Added wxFileName::SetPath() and set m_relative if no dir is given
  Corrected wxFrame::Enable() in wxMac.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13173 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2001-12-23 15:52:29 +00:00
parent cf48ccc00c
commit a7b51bc869
4 changed files with 28 additions and 13 deletions

View File

@@ -54,12 +54,12 @@ inline wxDateTime wxDateTime::Now()
/* static */
inline wxDateTime wxDateTime::Today()
{
struct tm *tm = GetTmNow();
tm->tm_hour =
tm->tm_min =
tm->tm_sec = 0;
struct tm *time = GetTmNow();
time->tm_hour = 0;
time->tm_min = 0;
time->tm_sec = 0;
return wxDateTime(*tm);
return wxDateTime(*time);
}
#if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))