diff options
author | Johannes Schickel | 2012-03-29 01:50:52 +0200 |
---|---|---|
committer | Johannes Schickel | 2012-03-29 01:50:52 +0200 |
commit | f3a19ea6aa39c66653fb0b012506c5aa7e091c71 (patch) | |
tree | e2c050d0c30c4c4e2cfc6ca4bd14a954fc1d5170 /gui/predictivedialog.cpp | |
parent | 15ff9380b5d9fcd0b39bbf5a3253e012039639e2 (diff) | |
download | scummvm-rg350-f3a19ea6aa39c66653fb0b012506c5aa7e091c71.tar.gz scummvm-rg350-f3a19ea6aa39c66653fb0b012506c5aa7e091c71.tar.bz2 scummvm-rg350-f3a19ea6aa39c66653fb0b012506c5aa7e091c71.zip |
GUI: Get rid of "using namespace Common" in predictivedialog.cpp.
Diffstat (limited to 'gui/predictivedialog.cpp')
-rw-r--r-- | gui/predictivedialog.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gui/predictivedialog.cpp b/gui/predictivedialog.cpp index 4d640c7104..aa2a358fa3 100644 --- a/gui/predictivedialog.cpp +++ b/gui/predictivedialog.cpp @@ -38,8 +38,6 @@ #include "backends/platform/ds/arm9/source/wordcompletion.h" #endif -using namespace Common; - namespace GUI { enum { @@ -907,7 +905,7 @@ void PredictiveDialog::loadAllDictionary(Dict &dict) { ConfMan.registerDefault(dict.nameDict, dict.fnameDict); if (dict.nameDict == "predictive_dictionary") { - Common::File *inFile = new File(); + Common::File *inFile = new Common::File(); if (!inFile->open(ConfMan.get(dict.nameDict))) { warning("Predictive Dialog: cannot read file: %s", dict.fnameDict.c_str()); return; |