aboutsummaryrefslogtreecommitdiff
path: root/gui/debugger.h
diff options
context:
space:
mode:
authorJohannes Schickel2014-05-27 02:04:08 +0200
committerJohannes Schickel2014-05-27 02:04:08 +0200
commit07c9fea9cbde6ca260e5e8be99f976a51752b4d7 (patch)
tree65755290573d1e08cbb2667d7c8416e0a6bcf58d /gui/debugger.h
parentae4ffe01f0e4354938714c546034cd0f9806bfc3 (diff)
downloadscummvm-rg350-07c9fea9cbde6ca260e5e8be99f976a51752b4d7.tar.gz
scummvm-rg350-07c9fea9cbde6ca260e5e8be99f976a51752b4d7.tar.bz2
scummvm-rg350-07c9fea9cbde6ca260e5e8be99f976a51752b4d7.zip
GUI: Slight naming cleanup in Debugger.
Diffstat (limited to 'gui/debugger.h')
-rw-r--r--gui/debugger.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/debugger.h b/gui/debugger.h
index 9dbc4084e8..f764623e90 100644
--- a/gui/debugger.h
+++ b/gui/debugger.h
@@ -89,7 +89,7 @@ protected:
DVAR_STRING
};
- struct DVar {
+ struct Var {
Common::String name;
void *variable;
VarType type;
@@ -125,7 +125,7 @@ private:
*/
uint _frameCountdown;
- Common::Array<DVar> _dvars;
+ Common::Array<Var> _vars;
typedef Common::HashMap<Common::String, Common::SharedPtr<Debuglet>, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> CommandsMap;
CommandsMap _cmds;