wxString tok;
-while (ReadOrs(tok));
+while (ReadOrs(tok))
+ ;
wxFprintf(m_wxr,_T(" control = [%i,wxSlider,'','wxSL_HORIZONTAL','%s',"),m_controlid,varname.c_str());
wxString tok;
-while (ReadOrs(tok));
+while (ReadOrs(tok))
+ ;
wxFprintf(m_wxr,_T(" control = [%i,wxGauge,'','wxGA_HORIZONTAL','%s',"),m_controlid,varname.c_str());
wxFprintf(m_wxr,_T(" control = [%i,wxCheckBox,'%s','0','%s',"),m_controlid,label.c_str(),varname.c_str());
- while (ReadOrs(tok));
+ while (ReadOrs(tok))
+ ;
ReadRect(x,y,width,height);
wxFprintf(m_wxr,_T(" control = [%i,wxRadioButton,'%s','0','%s',"),m_controlid,label.c_str(),varname.c_str());
- while(ReadOrs(tok));
+ while(ReadOrs(tok))
+ ;
ReadRect(x,y,width,height);
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);
name = el->name;
dtd->scaffold[myindex].name = name;
nameLen = 0;
- for (; name[nameLen++]; );
+ for (; name[nameLen++]; )
+ ;
dtd->contentStringLen += nameLen;
if (elementDeclHandler)
handleDefault = XML_FALSE;
// Month number always >= n/32, so save some loop time */
for (tmDest.tm_mon = (n4Day >> 5) + 1;
- n4Day > rgMonthDays[tmDest.tm_mon]; tmDest.tm_mon++);
+ n4Day > rgMonthDays[tmDest.tm_mon]; tmDest.tm_mon++)
+ ;
tmDest.tm_mday = (int)(n4Day - rgMonthDays[tmDest.tm_mon-1]);