Removed debugging statements

This commit is contained in:
Wyatt Olson 2010-09-11 21:22:46 -06:00
parent 3d566919b9
commit e232d8eb2e
2 changed files with 0 additions and 8 deletions

View File

@ -21,8 +21,6 @@
#include <string.h>
#include <safegtk.h>
#include <iostream>
MultiLangMgr langMgr;
Glib::ustring M (std::string key) { return langMgr.getStr (key); }
@ -32,8 +30,6 @@ bool MultiLangMgr::load (Glib::ustring fname, MultiLangMgr* fb) {
fallBack = fb;
std::cout << "Loading translation " << fname << "\n";
if (f==NULL)
return false;

View File

@ -25,8 +25,6 @@
#include <safekeyfile.h>
#include <addsetids.h>
#include <iostream>
Options options;
Glib::ustring versionString = "v3.0 alpha 1";
Glib::ustring paramFileExtension = ".pp3";
@ -475,8 +473,6 @@ void Options::load () {
}
}
std::cout << "Languages: " + defaultTranslation + "," + languageTranslation + "," + localeTranslation + "\n";
langMgr.load(localeTranslation, new MultiLangMgr(languageTranslation, new MultiLangMgr(defaultTranslation)));
rtengine::init (&options.rtSettings);