summaryrefslogtreecommitdiff
path: root/src/filename_ext.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2018-06-23 20:50:22 +0000
committerMatthias Melcher <fltk@matthiasm.com>2018-06-23 20:50:22 +0000
commitb8e97d7c28ad6f168e9314dab3c7651365b1c71c (patch)
treeaa722d1eb241aef345b6009fac807f060f82f7c6 /src/filename_ext.cxx
parentb1598dc70362f331da7a65f1e5ddece7c88299f3 (diff)
Doxygen only: fixed all block comments starting with an asterisk to space-only, fixed doxygen keywords prepended with @ to use a backward slash instead. No code was changed.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12970 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/filename_ext.cxx')
-rw-r--r--src/filename_ext.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/filename_ext.cxx b/src/filename_ext.cxx
index 43f0a7962..8eb90ea5c 100644
--- a/src/filename_ext.cxx
+++ b/src/filename_ext.cxx
@@ -36,18 +36,18 @@ const char *fl_filename_ext(const char *buf) {
/**
- * @cond DriverDev
- * @addtogroup DriverDeveloper
- * @{
+ \cond DriverDev
+ \addtogroup DriverDeveloper
+ \{
*/
/**
- * Default implementation to find a filename extension.
- *
- * The default implementation assumes that the last `.` character separates
- * the extension form the basename of a file.
- *
- * @see fl_filename_ext(const char*)
+ Default implementation to find a filename extension.
+
+ The default implementation assumes that the last `.` character separates
+ the extension form the basename of a file.
+
+ \see fl_filename_ext(const char*)
*/
const char *Fl_System_Driver::filename_ext(const char *buf) {
const char *q = 0;
@@ -60,8 +60,8 @@ const char *Fl_System_Driver::filename_ext(const char *buf) {
}
/**
- * @}
- * @endcond
+ \}
+ \endcond
*/
//