From efcd017c718a7954b0a8e6286c518e408aadc3fb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 17 May 2000 17:22:21 +0000 Subject: [PATCH] attempt for a Solaris compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7413 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/datetime.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/datetime.cpp b/src/common/datetime.cpp index 787e9c2fac..a2e2bc13f0 100644 --- a/src/common/datetime.cpp +++ b/src/common/datetime.cpp @@ -2870,7 +2870,7 @@ const wxChar *wxDateTime::ParseFormat(const wxChar *date, // take this date as default tmDef = dateDef.GetTm(); } - else if ( m_time != 0 ) + else if ( m_time != wxLongLong(0) ) { // if this date is valid, don't change it tmDef = GetTm();