Added and removed some debugging information

pull/21/head
Pieter van der Kloet 14 years ago
parent 18d8d89bdb
commit 1b536d69f3

@ -1,6 +1,7 @@
#include <QApplication>
#include <QDir>
#include <QFile>
#include <QDebug>
#include "maindialog.hpp"
@ -23,6 +24,10 @@ int main(int argc, char *argv[])
// Load the stylesheet
QFile file("./launcher.qss");
QFileInfo fi(file);
qDebug() << "Stylesheet path is: " << fi.absoluteFilePath();
file.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(file.readAll());

@ -277,8 +277,6 @@ void MainDialog::setupConfig()
"openmw", "openmw.cfg"));
}
file.setFileName(config); // Just for displaying information
qDebug() << "Using config file from " << file.fileName();
file.close();
// Open our config file

Loading…
Cancel
Save