Version 2.0

This commit is contained in:
Alex
2014-02-26 14:22:00 +01:00
parent 964f04565b
commit 6aa4ff7ea8
3606 changed files with 1481193 additions and 6093 deletions

View File

@@ -5,8 +5,16 @@ int main(int argc, char *argv[])
{
QApplication app(argc, argv);
app.setOrganizationName("thunderbug1");
MainWindow w;
w.setWindowTitle("Spherebot control");
w.setWindowTitle("Spherebot control 2.0");
QFile stylesheet(":/new/stylesheet/stylesheet.txt");
stylesheet.open(QFile::ReadOnly);
QString setSheet = QLatin1String(stylesheet.readAll());
qDebug()<<setSheet;
w.setStyleSheet(setSheet);
w.show();
return app.exec();