path to UTF8

configfile split
This commit is contained in:
doitux
2007-04-18 00:11:24 +00:00
parent 27cd08ccb0
commit 2b94ce958f
33 changed files with 565 additions and 498 deletions
@@ -22,14 +22,16 @@
#include "ui_settingsdialog.h"
#include <string>
#include <QtCore>
#include <QtGui>
class ConfigFile;
class settingsDialogImpl: public QDialog, public Ui::settingsDialog {
Q_OBJECT
public:
settingsDialogImpl(QWidget *parent = 0);
settingsDialogImpl(QWidget *parent = 0, std::string = "");
void setPlayerNickIsChanged(bool theValue){ playerNickIsChanged = theValue;}
bool getPlayerNickIsChanged() const{ return playerNickIsChanged;}
@@ -53,6 +55,7 @@ private:
bool playerNickIsChanged;
bool settingsCorrect;
ConfigFile *myConfig;
};