+ _T(";\n"));
}
file.Write(_T("\nprivate:\n void InitWidgetsFromXRC(){\n")
- _T(" wxXmlResource::Get()->LoadObject(this,NULL,\"")
+ _T(" wxXmlResource::Get()->LoadObject(this,NULL,_T(\"")
+ m_className
- + _T("\",\"")
+ + _T("\"), _T(\"")
+ m_parentClassName
- + _T("\");\n"));
+ + _T("\"));\n"));
for(i=0;i<m_wdata.Count();++i)
{
const XRCWidgetData& w = m_wdata.Item(i);
// Any bitmaps:
if (node->GetName() == _T("bitmap"))
return true;
+
+ if (node->GetName() == _T("icon"))
+ return true;
// URLs in wxHtmlWindow:
if (node->GetName() == _T("url"))
_T(" #pragma hdrstop\n")
_T("#endif\n")
_T("\n")
-_T("#ifndef WX_PRECOMP\n")
-_T(" #include <wx/wx.h>\n")
-_T("#endif\n")
_T("")
_T("#include <wx/filesys.h>\n")
_T("#include <wx/fs_mem.h>\n")
size_t lng = file.Length();
snum.Printf(_T("%i"), num);
- output = _T(" xml_res_file_") + snum + _T(" = \"\"\"\\\n");
+ output = _T(" xml_res_file_") + snum + _T(" = '''\\\n");
unsigned char *buffer = new unsigned char[lng];
file.Read(buffer, lng);
tmp = (wxChar)c;
linelng = 0;
}
- else if (c < 32 || c > 127 || c == '"')
+ else if (c < 32 || c > 127 || c == '\'')
tmp.Printf(_T("\\x%02x"), c);
else if (c == '\\')
tmp = _T("\\\\");
delete[] buffer;
- output += _T("\"\"\"\n\n");
+ output += _T("'''\n\n");
return output;
}