diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-29 10:50:22 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-29 10:50:22 +0200 |
commit | ae7ac6a017bce310a160bb9152062635fdc72188 (patch) | |
tree | 47765a2d72faf25737d80eac3af211079a529b16 /src/mainwindow.cpp | |
parent | Fixed loading Url methods. (diff) | |
download | rekonq-ae7ac6a017bce310a160bb9152062635fdc72188.tar.xz |
Some fixes and warning on webview createWindow
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 56ae108e..87129528 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -152,6 +152,8 @@ MainWindow::MainWindow() // setting up toolbars to NOT have context menu enabled setContextMenuPolicy(Qt::DefaultContextMenu); + + QTimer::singleShot(0, this, SLOT(postLaunch())); } @@ -161,6 +163,11 @@ MainWindow::~MainWindow() } +void MainWindow::postLaunch() +{ +} + + QSize MainWindow::sizeHint() const { QRect desktopRect = QApplication::desktop()->screenGeometry(); |