summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2017-10-14 08:35:38 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2017-10-14 08:35:38 +0000
commitad967af70ca45c29411d6425b4027ef86276f597 (patch)
tree89eb16d6517c9a192ff0bb04eb7a65ee814c29f2 /src
parentaff3a0ac124a94d4ec2b242b24e98b9a20c4841f (diff)
Fix confusing (QT style) doxygen comment marker.
Add a space between '/*' and '!'. Other changes: comment alignment. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12494 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Native_File_Chooser_WIN32.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Fl_Native_File_Chooser_WIN32.cxx b/src/Fl_Native_File_Chooser_WIN32.cxx
index 4eb03ae8a..c726dd8bf 100644
--- a/src/Fl_Native_File_Chooser_WIN32.cxx
+++ b/src/Fl_Native_File_Chooser_WIN32.cxx
@@ -2,7 +2,7 @@
//
// FLTK native OS file chooser widget
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
// Copyright 2004 Greg Ercolano.
// API changes + filter improvements by Nathan Vander Wilt 2005
//
@@ -28,14 +28,14 @@
#include <stdio.h> // sprintf
#include <wchar.h>
-#define FNFC_MAX_PATH 32768 // XXX: MAX_PATH under win32 is 260, too small for modern use
+#define FNFC_MAX_PATH 32768 // XXX: MAX_PATH under win32 is 260, too small for modern use
#include <FL/Fl_Native_File_Chooser.H>
# include <windows.h>
# include <commdlg.h> // OPENFILENAMEW, GetOpenFileName()
# include <shlobj.h> // BROWSEINFOW, SHBrowseForFolder()
# include <FL/filename.H> // FL_EXPORT
-#include <FL/x.H> // for fl_open_display
+#include <FL/x.H> // fl_open_display
class Fl_WinAPI_Native_File_Chooser_Driver : public Fl_Native_File_Chooser_Driver {
@@ -1029,7 +1029,7 @@ static LPCWSTR utf8towchar(const char *in) {
return wout;
}
-#endif /*!FL_DOXYGEN*/
+#endif /* !FL_DOXYGEN */
//
// End of "$Id$".