diff options
author | Max Horn | 2009-10-08 21:28:57 +0000 |
---|---|---|
committer | Max Horn | 2009-10-08 21:28:57 +0000 |
commit | 3399c3aeb638ae874557c72b4ab4db016ff152c8 (patch) | |
tree | f476b2a87837568da3bcdaf031f4eb61293f5086 /engines/sci/gfx | |
parent | 2ab906bafd7e154bb9e333d7e76fe2a714478efd (diff) | |
download | scummvm-rg350-3399c3aeb638ae874557c72b4ab4db016ff152c8.tar.gz scummvm-rg350-3399c3aeb638ae874557c72b4ab4db016ff152c8.tar.bz2 scummvm-rg350-3399c3aeb638ae874557c72b4ab4db016ff152c8.zip |
Change doxygen inline comments from "//!" to "///" as proposed on -devel
svn-id: r44802
Diffstat (limited to 'engines/sci/gfx')
-rw-r--r-- | engines/sci/gfx/font.h | 6 | ||||
-rw-r--r-- | engines/sci/gfx/gfx_gui.h | 16 |
2 files changed, 11 insertions, 11 deletions
diff --git a/engines/sci/gfx/font.h b/engines/sci/gfx/font.h index fe0d81d135..af7a5f19e7 100644 --- a/engines/sci/gfx/font.h +++ b/engines/sci/gfx/font.h @@ -78,9 +78,9 @@ struct gfx_bitmap_font_t { * SCI0, SCI01 and SCI1 all use the same font format. */ enum fontFlags { - kFontCountWhitespace = 1 << 0, //!< In SQ3, whitespace is included in text size - kFontNoNewlines = 1 << 1, //!< Don't treat newline characters - kFontIgnoreLF = 1 << 2 //!< Interpret CR LF sequences as a single newline, rather than two + kFontCountWhitespace = 1 << 0, ///< In SQ3, whitespace is included in text size + kFontNoNewlines = 1 << 1, ///< Don't treat newline characters + kFontIgnoreLF = 1 << 2 ///< Interpret CR LF sequences as a single newline, rather than two }; /** diff --git a/engines/sci/gfx/gfx_gui.h b/engines/sci/gfx/gfx_gui.h index 68342aa0c0..fe7eb1bb50 100644 --- a/engines/sci/gfx/gfx_gui.h +++ b/engines/sci/gfx/gfx_gui.h @@ -38,8 +38,8 @@ class Menu; * Flags for windows in SCI0. */ enum windowFlags { - kWindowTransparent = 0x01, //!< 0000 0001 - kWindowNoFrame = 0x02, //!< 0000 0010 - a window without a frame + kWindowTransparent = 0x01, ///< 0000 0001 + kWindowNoFrame = 0x02, ///< 0000 0010 - a window without a frame kWindowTitle = 0x04, /** * 0000 0100 - Add title bar to * window (10 pixels high, framed, @@ -47,17 +47,17 @@ enum windowFlags { * white on dark gray), bits 3-6 * are unused */ - kWindowDontDraw = 0x80, //!< 1000 0000 - don't draw anything - kWindowNoDropShadow = 0x1000000, //!< 0001 0000 0000 0000 0000 0000 0000 (not in SCI) + kWindowDontDraw = 0x80, ///< 1000 0000 - don't draw anything + kWindowNoDropShadow = 0x1000000, ///< 0001 0000 0000 0000 0000 0000 0000 (not in SCI) kWindowAutoRestore = 0x2000000 }; /** Button and frame control flags. */ enum controlStateFlags { - kControlStateEnabled = 0x0001, //!< 0001 - enabled buttons (used by the interpreter) - kControlStateDisabled = 0x0004, //!< 0010 - grayed out buttons (used by the interpreter) - kControlStateFramed = 0x0008, //!< 1000 - widgets surrounded by a frame (used by the interpreter) - kControlStateDitherFramed = 0x1000 //!< 0001 0000 0000 0000 - widgets surrounded by a dithered frame (used in kgraphics) + kControlStateEnabled = 0x0001, ///< 0001 - enabled buttons (used by the interpreter) + kControlStateDisabled = 0x0004, ///< 0010 - grayed out buttons (used by the interpreter) + kControlStateFramed = 0x0008, ///< 1000 - widgets surrounded by a frame (used by the interpreter) + kControlStateDitherFramed = 0x1000 ///< 0001 0000 0000 0000 - widgets surrounded by a dithered frame (used in kgraphics) }; /** |