...
authorAkos Polster <akos@pipacs.com>
Sun, 28 Nov 2010 15:38:10 +0000 (16:38 +0100)
committerAkos Polster <akos@pipacs.com>
Sun, 28 Nov 2010 15:38:10 +0000 (16:38 +0100)
mainwindow.cpp
widgets/splash.cpp

index 763fb06..f45b950 100755 (executable)
@@ -42,7 +42,10 @@ MainWindow::MainWindow(QWidget *parent):
 #ifdef Q_WS_MAEMO_5
     setAttribute(Qt::WA_Maemo5StackedWindow, true);
 #endif
+
+#ifndef Q_OS_SYMBIAN
     setWindowTitle("Dorian");
+#endif
 
     // Central widget. Must be an intermediate, because the book view widget
     // can be re-parented later
@@ -54,7 +57,6 @@ MainWindow::MainWindow(QWidget *parent):
 
     // Book view
     view = new BookView(this);
-    view->show();
 
     // Tool bar actions
 
index f906c29..de42680 100755 (executable)
@@ -2,6 +2,7 @@
 \r
 #include "splash.h"\r
 \r
-Splash::Splash(): QSplashScreen(QPixmap(":/icons/splash.jpg"))\r
+Splash::Splash(): QSplashScreen(QPixmap(":/icons/splash.jpg").scaled(360, 518,\r
+                      Qt::IgnoreAspectRatio, Qt::SmoothTransformation))\r
 {\r
 }\r