Skip to content
Snippets Groups Projects
Commit 502b0bea authored by Per Hedbor's avatar Per Hedbor
Browse files

Fixed some syntax errors

Rev: src/post_modules/GTK/pcdocs/MenuFactory:1.3
parent 53e2df38
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ ARGS(array(MenuDef)); ...@@ -26,7 +26,7 @@ ARGS(array(MenuDef));
// MenuDef( "File/New", new_file, 0, "A-N" ), // MenuDef( "File/New", new_file, 0, "A-N" ),
// MenuDef( "File/Open", new_file, 1, "A-O" ), // MenuDef( "File/Open", new_file, 1, "A-O" ),
// MenuDef( "File/Save", save_file, 0, "A-S" ), // MenuDef( "File/Save", save_file, 0, "A-S" ),
// MenuDef( "File/<separator>", 0, 0 ), // MenuDef( "File/&lt;separator&gt;", 0, 0 ),
// MenuDef( "File/Quit", _exit, 0, "A-Q" ), // MenuDef( "File/Quit", _exit, 0, "A-Q" ),
// ); // );
// </pre> // </pre>
...@@ -37,8 +37,8 @@ NAME_ARGS(path,callback,callbackargument,shortcut,flags); ...@@ -37,8 +37,8 @@ NAME_ARGS(path,callback,callbackargument,shortcut,flags);
RETURNS(MenuDef); RETURNS(MenuDef);
// Path is the menupath. A submenu will be created for each // Path is the menupath. A submenu will be created for each
// "Directory" in the path, and menuitems will be created for the // "Directory" in the path, and menuitems will be created for the
// "files". There are two special cases: The "file" '<separator>' will // "files". There are two special cases: The "file" '&lt;separator&gt;' will
// create a thin line. The "file"prefix <check> will make the menuitem // create a thin line. The "file"prefix &lt;check&gt; will make the menuitem
// a checkmenuitem instead of a normal menuitem. // a checkmenuitem instead of a normal menuitem.
// <p> // <p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment