From: Vadim Zeitlin Date: Sat, 11 Feb 2006 16:40:10 +0000 (+0000) Subject: wxUSE_DATETIME==0 compilation fix (part of patch 1203970) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/87152bb53d959eba3f7d6da04ae4dc4a33394079 wxUSE_DATETIME==0 compilation fix (part of patch 1203970) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37496 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/xrc/xmlres.h b/include/wx/xrc/xmlres.h index e0b0aef560..e48c0728c8 100644 --- a/include/wx/xrc/xmlres.h +++ b/include/wx/xrc/xmlres.h @@ -68,12 +68,18 @@ class wxXmlResourceModule; class WXDLLIMPEXP_XRC wxXmlResourceDataRecord { public: - wxXmlResourceDataRecord() : Doc(NULL), Time(wxDateTime::Now()) {} + wxXmlResourceDataRecord() : Doc(NULL) { +#if wxUSE_DATETIME + Time = wxDateTime::Now(); +#endif + } ~wxXmlResourceDataRecord() {delete Doc;} wxString File; wxXmlDocument *Doc; +#if wxUSE_DATETIME wxDateTime Time; +#endif };