diff options
Diffstat (limited to 'client/mainwindow.cc')
-rw-r--r-- | client/mainwindow.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/client/mainwindow.cc b/client/mainwindow.cc index c3b8649..c3d29ba 100644 --- a/client/mainwindow.cc +++ b/client/mainwindow.cc @@ -48,7 +48,6 @@ QPushButton *MainWindow::createButton(char* icon) Qt::KeepAspectRatio:Qt::KeepAspectRatioByExpanding; pixmap = pixmap.scaled(w,h, aspect, Qt::SmoothTransformation); - QPushButton *btn = new QPushButton(); btn->setIconSize(QSize(50,50)); @@ -62,8 +61,6 @@ MainWindow::MainWindow(): QWidget() { MIaV::info->log("Starting MIaV v. %s.", VERSION); - resize(800, 600); - // Create the overlaying splashscreen SplashScreen splash(this); /* @@ -127,7 +124,8 @@ MainWindow::MainWindow(): QWidget() // Create statusbar show(); - // setWindowState(Qt::WindowFullScreen); + //setWindowState(Qt::WindowFullScreen); + resize(800, 600); MIaV::info->log("MIaV is ready."); } |