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
This commit is contained in:
Václav Slavík
2007-06-18 20:30:20 +00:00
parent 5881d27bcf
commit 09f0108224

View File

@@ -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<aXRCWndClassData.GetCount();++i){
aXRCWndClassData.Item(i).GenerateHeaderCode(file);
@@ -710,7 +710,7 @@ static wxString FileToPythonArray(wxString filename, int num)
wxASSERT_MSG( offset == lng, wxT("Huge file not supported") );
snum.Printf(_T("%i"), num);
output = _T(" xml_res_file_") + snum + _T(" = '''\\\n");
output = " xml_res_file_" + snum + " = '''\\\n";
unsigned char *buffer = new unsigned char[lng];
file.Read(buffer, lng);
@@ -763,7 +763,7 @@ void XmlResApp::MakePackagePython(const wxArrayString& flist)
);
file.Write("def ") + parFuncname + _T("():\n");
file.Write("def " + parFuncname + "():\n");
for (i = 0; i < flist.GetCount(); i++)
file.Write(
@@ -813,7 +813,7 @@ void XmlResApp::OutputGettext()
fout.Open(parOutput, wxT("wt"));
for (size_t i = 0; i < str.GetCount(); i++)
fout.Write("_(\"") + str[i] + "\");\n";
fout.Write("_(\"" + str[i] + "\");\n");
if (!parOutput) fout.Detach();
}