From: Václav Slavík Date: Mon, 18 Jun 2007 20:30:20 +0000 (+0000) Subject: made the code a bit more readable by not using _T() around to-be-generated code snippets X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/09f010822417f2d9efa6e32783c02e9042f1e469 made the code a bit more readable by not using _T() around to-be-generated code snippets git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46534 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/utils/wxrc/wxrc.cpp b/utils/wxrc/wxrc.cpp index dd31ea31e4..c07224810e 100644 --- a/utils/wxrc/wxrc.cpp +++ b/utils/wxrc/wxrc.cpp @@ -629,7 +629,7 @@ void XmlResApp::MakePackageCPP(const wxArrayString& flist) FileToCppArray(parOutputPath + wxFILE_SEP_PATH + flist[i], i)); file.Write("" -"void ") + parFuncname + wxT("()\n" +"void " + parFuncname + "()\n" "{\n" "\n" " // Check for memory FS. If not present, load the handler:\n" @@ -685,8 +685,8 @@ void XmlResApp::GenCPPHeader() "//\n" "// This file was automatically generated by wxrc, do not edit by hand.\n" "//\n\n" -"#ifndef __") + fileSpec + _T("_h__\n" -"#define __") + fileSpec + _T("_h__\n" +"#ifndef __" + fileSpec + "_h__\n" +"#define __" + fileSpec + "_h__\n" ); for(size_t i=0;i