From 01a4679360888aa030c31ea194a676b12ed52b92 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 29 Dec 2002 01:38:49 +0000 Subject: [PATCH] fixed wxALL_FILES definition in Unicode build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18446 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/defs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/defs.h b/include/wx/defs.h index e98d4a5498..1a8b26dc3b 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -1800,10 +1800,10 @@ enum wxPrintMode // macro to specify "All Files" on different platforms #if defined(__WXMSW__) || defined(__WXPM__) # define wxALL_FILES_PATTERN wxT("*.*") -# define wxALL_FILES gettext_noop(wxT("All files (*.*)|*.*")) +# define wxALL_FILES gettext_noop("All files (*.*)|*.*") #else # define wxALL_FILES_PATTERN wxT("*") -# define wxALL_FILES gettext_noop(wxT("All files (*)|*")) +# define wxALL_FILES gettext_noop("All files (*)|*") #endif // --------------------------------------------------------------------------- -- 2.47.2