From 09f010822417f2d9efa6e32783c02e9042f1e469 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 18 Jun 2007 20:30:20 +0000 Subject: [PATCH] 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 --- utils/wxrc/wxrc.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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