summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Menu_.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Menu_.cxx b/src/Fl_Menu_.cxx
index 775395e4a..0775ecfce 100644
--- a/src/Fl_Menu_.cxx
+++ b/src/Fl_Menu_.cxx
@@ -49,9 +49,9 @@
void my_menu_callback(Fl_Widget*,void*) {
char name[80];
if ( menubar->item_pathname(name, sizeof(name)-1) == 0 ) { // recently picked item
- if ( strcmp(name, "File/&Open") == 0 ) { /* open invoked */ }
- if ( strcmp(name, "File/&Save") == 0 ) { /* save invoked */ }
- if ( strcmp(name, "Edit/&Copy") == 0 ) { /* copy invoked */ }
+ if ( strcmp(name, "File/&Open") == 0 ) { /# open invoked #/ }
+ if ( strcmp(name, "File/&Save") == 0 ) { /# save invoked #/ }
+ if ( strcmp(name, "Edit/&Copy") == 0 ) { /# copy invoked #/ }
}
}
int main() {