diff options
author | Ori Avtalion | 2016-03-23 18:01:13 +0200 |
---|---|---|
committer | Ori Avtalion | 2016-03-23 18:01:13 +0200 |
commit | ccc7506666c50a2a13dba9759f605260d50eaebf (patch) | |
tree | d9e959df19e6ae951ff11eefbdacd13fb3fce1c6 /gui | |
parent | 114ef5817fe661275f7cb99d490b72f1d287b30e (diff) | |
download | scummvm-rg350-ccc7506666c50a2a13dba9759f605260d50eaebf.tar.gz scummvm-rg350-ccc7506666c50a2a13dba9759f605260d50eaebf.tar.bz2 scummvm-rg350-ccc7506666c50a2a13dba9759f605260d50eaebf.zip |
GUI: Fix constant names mentioned in comment
Diffstat (limited to 'gui')
-rw-r--r-- | gui/ThemeEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index 1b95a11e03..c2deb8c61e 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -164,7 +164,7 @@ struct DrawDataInfo { DrawData id; ///< The actual ID of the DrawData item. const char *name; ///< The name of the DrawData item as it appears in the Theme Description files bool buffer; ///< Sets whether this item is buffered on the backbuffer or drawn directly to the screen. - DrawData parent; ///< Parent DrawData item, for items that overlay. E.g. kButtonIdle -> kButtonHover + DrawData parent; ///< Parent DrawData item, for items that overlay. E.g. kDDButtonIdle -> kDDButtonHover }; /** |