summaryrefslogtreecommitdiff
path: root/FL/fl_types.h
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2015-06-15 20:24:41 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2015-06-15 20:24:41 +0000
commit5573c35ff15e7f646404b2dfc9806250f64fd3af (patch)
treefc616ec255676644088c97b94382c7790176a6cf /FL/fl_types.h
parent769b35770ab4a91e905797f12e51375eb790dec7 (diff)
Fix spelling errors and improve documentation.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10759 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/fl_types.h')
-rw-r--r--FL/fl_types.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/FL/fl_types.h b/FL/fl_types.h
index 1692246cd..51caf1a0b 100644
--- a/FL/fl_types.h
+++ b/FL/fl_types.h
@@ -3,7 +3,7 @@
*
* Simple "C"-style types for the Fast Light Tool Kit (FLTK).
*
- * Copyright 1998-2010 by Bill Spitzak and others.
+ * Copyright 1998-2015 by Bill Spitzak and others.
*
* This library is free software. Distribution and use rights are outlined in
* the file "COPYING" which should have been included with this file. If this
@@ -16,7 +16,7 @@
* http://www.fltk.org/str.php
*/
-/** \file
+/** \file
* This file contains simple "C"-style type definitions.
*/
@@ -31,13 +31,13 @@ typedef unsigned char uchar;
/** unsigned long */
typedef unsigned long ulong;
-/** Flexible length utf8 Unicode text
+/** Flexible length UTF-8 Unicode text.
*
- * \todo FIXME: temporary (?) typedef to mark UTF8 and Unicode conversions
+ * \todo FIXME: temporary (?) typedef to mark UTF-8 and Unicode conversions
*/
typedef char *Fl_String;
-/** Flexible length utf8 Unicode read-only string
+/** Flexible length UTF-8 Unicode read-only string.
* \sa Fl_String
*/
typedef const char *Fl_CString;
@@ -45,9 +45,9 @@ typedef const char *Fl_CString;
/** 24-bit Unicode character + 8-bit indicator for keyboard flags */
typedef unsigned int Fl_Shortcut;
-/** 24-bit Unicode character - upper 8-bits are unused */
+/** 24-bit Unicode character - upper 8 bits are unused */
typedef unsigned int Fl_Char;
-
+
/*@}*/ /* group: Miscellaneous */
#endif