diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-03-21 17:03:13 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-03-21 17:03:13 +0100 |
| commit | fa84b58cd597a327e81244bcd517a029a7e63d04 (patch) | |
| tree | ab426cc965772b2766f6891874067fd77e6aaf80 /src/Fl_Screen_Driver.H | |
| parent | 35c212ef3bb505215f1470ac8a5d487c1a587721 (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.H | 6 |
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() {} }; |
