use new wxAPPLY_T macro instead of 3 identical __XDATE__/__XTIME__/__XFILE__ ones
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38252 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -242,20 +242,20 @@
|
|||||||
/* and _() in wxWidgets sources */
|
/* and _() in wxWidgets sources */
|
||||||
#define wxT(x) _T(x)
|
#define wxT(x) _T(x)
|
||||||
|
|
||||||
|
/* a helper macro allowing to make another macro Unicode-friendly, see below */
|
||||||
|
#define wxAPPLY_T(x) _T(x)
|
||||||
|
|
||||||
/* Unicode-friendly __FILE__, __DATE__ and __TIME__ analogs */
|
/* Unicode-friendly __FILE__, __DATE__ and __TIME__ analogs */
|
||||||
#ifndef __TFILE__
|
#ifndef __TFILE__
|
||||||
#define __XFILE__(x) wxT(x)
|
#define __TFILE__ wxAPPLY_T(__FILE__)
|
||||||
#define __TFILE__ __XFILE__(__FILE__)
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __TDATE__
|
#ifndef __TDATE__
|
||||||
#define __XDATE__(x) wxT(x)
|
#define __TDATE__ wxAPPLY_T(__DATE__)
|
||||||
#define __TDATE__ __XDATE__(__DATE__)
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __TTIME__
|
#ifndef __TTIME__
|
||||||
#define __XTIME__(x) wxT(x)
|
#define __TTIME__ wxAPPLY_T(__TIME__)
|
||||||
#define __TTIME__ __XTIME__(__TIME__)
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user