From a3b057ecbc5993196f61693abe7355740a17cee1 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Sat, 11 Feb 2012 23:52:40 +0100 Subject: Delay showMessageBar creation to get sure it is created after window This should fix Yoann's problem with bar and let us have a little bit clean API in webtab REVIEW:103905 --- src/application.cpp | 2 +- src/webtab.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/application.cpp b/src/application.cpp index d8044e24..1bf7b556 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -205,7 +205,7 @@ int Application::newInstance() if (isRekonqCrashed && isFirstLoad) { loadUrl(KUrl("about:closedTabs"), Rekonq::NewWindow); - mainWindow()->currentTab()->showMessageBar(); + QTimer::singleShot(1000, mainWindow()->currentTab(), SLOT(showMessageBar())); } if (areThereArguments) diff --git a/src/webtab.h b/src/webtab.h index ccbd7a83..b875e4fe 100644 --- a/src/webtab.h +++ b/src/webtab.h @@ -93,7 +93,6 @@ public: void setPart(KParts::ReadOnlyPart *p, const KUrl &u); - void showMessageBar(); private Q_SLOTS: void updateProgress(int progress); @@ -103,6 +102,8 @@ private Q_SLOTS: void showRSSInfo(const QPoint &pos); void showSearchEngine(const QPoint &pos); void openSearchEngineAdded(); + + void showMessageBar(); Q_SIGNALS: void loadProgressing(); -- cgit v1.2.1