summaryrefslogtreecommitdiff
path: root/src/Fl_Screen_Driver.H
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2022-03-21 17:03:13 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2022-03-21 17:03:13 +0100
commitfa84b58cd597a327e81244bcd517a029a7e63d04 (patch)
treeab426cc965772b2766f6891874067fd77e6aaf80 /src/Fl_Screen_Driver.H
parent35c212ef3bb505215f1470ac8a5d487c1a587721 (diff)
Fix silly MSVC 2010 parser warnings
Code like "void copy(const char */*stuff*/, ...)" would issue the warning "'*/' seen outside comment" which is formally true but ... These warnings don't appear with newer MS compilers, but I fixed them anyway.
Diffstat (limited to 'src/Fl_Screen_Driver.H')
-rw-r--r--src/Fl_Screen_Driver.H6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Screen_Driver.H b/src/Fl_Screen_Driver.H
index 60ad11dcd..5c08e2af1 100644
--- a/src/Fl_Screen_Driver.H
+++ b/src/Fl_Screen_Driver.H
@@ -200,11 +200,11 @@ public:
// supports Fl_Window::default_icons()
virtual void default_icons(const Fl_RGB_Image *icons[], int count);
// implement to support copy-to-clipboard
- virtual void copy(const char */*stuff*/, int /*len*/, int /*clipboard*/, const char */*type*/) {}
+ virtual void copy(const char * /*stuff*/, int /*len*/, int /*clipboard*/, const char * /*type*/) {}
// implement to support paste-from-clipboard
- virtual void paste(Fl_Widget &, int /*clipboard*/, const char */*type*/) {}
+ virtual void paste(Fl_Widget &, int /*clipboard*/, const char * /*type*/) {}
// implement to support paste-from-clipboard
- virtual int clipboard_contains(const char */*type*/) {return 0;}
+ virtual int clipboard_contains(const char * /*type*/) {return 0;}
// implement to support paste-from-clipboard
virtual void clipboard_notify_change() {}
};