X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=mainwindow.cpp;h=21194523b96fac76723ad0b37ab3dead38c5cbca;hb=30e85d759793aa2b367e4bacd730b733112a1a7b;hp=763fb06273c1cd52f2ed1cf5f0f5eb3833a38bb3;hpb=7104ccfab5dfefccfa4cb1137f0b7504aa09244f;p=dorian diff --git a/mainwindow.cpp b/mainwindow.cpp index 763fb06..2119452 100755 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -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 @@ -107,7 +109,8 @@ MainWindow::MainWindow(QWidget *parent): // Load library, upgrade it if needed libraryProgress = new ProgressDialog(tr("Upgrading library"), this); Library *library = Library::instance(); - connect(library, SIGNAL(beginUpgrade(int)), this, SLOT(onBeginUpgrade(int))); + connect(library, SIGNAL(beginUpgrade(int)), + this, SLOT(onBeginUpgrade(int))); connect(library, SIGNAL(upgrading(const QString &)), this, SLOT(onUpgrading(const QString &))); connect(library, SIGNAL(endUpgrade()), this, SLOT(onEndUpgrade())); @@ -252,13 +255,6 @@ void MainWindow::showBookmarks() } } -void MainWindow::closeEvent(QCloseEvent *event) -{ - TRACE; - view->setLastBookmark(); - AdopterWindow::closeEvent(event); -} - void MainWindow::onSettingsChanged(const QString &key) { #if defined(Q_WS_MAEMO_5)