final part of SF patch #904166 (DMC fix)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26055 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2004-03-03 10:46:59 +00:00
parent 6898822480
commit b2247ee93b
4 changed files with 16 additions and 8 deletions

View File

@@ -1077,9 +1077,11 @@ void rc2xml::ParseMenuItem()
ptoken.MakeUpper();
if (token==_T("CHECKED"))
m_xmlfile.Write(_T("\t\t\t<checkable>1</checkable>\n"));
else if (token==_T("MENUBREAK"));
else if (token==_T("MENUBREAK"))
;
//m_xmlfile.Write("\t\t\t</break>\n");
else if (token==_T("GRAYED"));
else if (token==_T("GRAYED"))
;
else
wxLogError(_T("Unknown Menu Item token:")+token);