diff options
Diffstat (limited to 'gui')
-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; |