|
From: Andre R. <and...@us...> - 2006-02-05 18:38:25
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29899/Common/source Modified Files: shellmenu.c Log Message: Fixed Radio/OPML-specific syntax error due to misplaced #endif. Index: shellmenu.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/shellmenu.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shellmenu.c 5 Feb 2006 16:12:02 -0000 1.9 --- shellmenu.c 5 Feb 2006 18:38:16 -0000 1.10 *************** *** 1634,1645 **** boolean flrunfilemenuscript = langrunstringnoerror ("\x2C" "Frontier.tools.windowTypes.runFileMenuScript", bs); ! if (flrunfilemenuscript) #endif runfilemenuscript (iditem); ! #ifndef PIKE ! else { /* if the script is not defined then we try to do some menu items without the script */ --- 1634,1645 ---- boolean flrunfilemenuscript = langrunstringnoerror ("\x2C" "Frontier.tools.windowTypes.runFileMenuScript", bs); ! if (flrunfilemenuscript) { #endif runfilemenuscript (iditem); ! #ifndef PIKE ! } else { /* if the script is not defined then we try to do some menu items without the script */ *************** *** 1677,1684 **** } /* else */ - - } #endif break; /* file menu */ --- 1677,1683 ---- } /* else */ #endif + } /* if(!flkernelhandledcommand) */ break; /* file menu */ |