diff options
| author | Martin T. H. Sandsmark <sandsmark@samfundet.no> | 2010-12-23 15:35:55 +0100 | 
|---|---|---|
| committer | Martin T. H. Sandsmark <sandsmark@samfundet.no> | 2010-12-23 15:35:55 +0100 | 
| commit | 14c4b35e5cb638320cb20d0dc1a3c27d69172f11 (patch) | |
| tree | a446cbf8a42ba8f9a23a984f10193a64412925ee | |
| parent | Highlight current tab in tab list by making it bold. (diff) | |
| download | rekonq-14c4b35e5cb638320cb20d0dc1a3c27d69172f11.tar.xz | |
fix startup notification when opening in an already running rekonq instance
| -rw-r--r-- | src/application.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/application.cpp b/src/application.cpp index a7575b94..41c6e762 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -54,6 +54,7 @@  #include <KIcon>  #include <KMessageBox>  #include <KStandardDirs> +#include <KStartupInfo>  #include <ThreadWeaver/Weaver>  #include <KAction> @@ -175,6 +176,8 @@ int Application::newInstance()          for (int i = 1; i < urlList.count(); ++i)              loadUrl( urlList.at(i), Rekonq::NewTab); +        KStartupInfo::appStarted(); +      } else if (!isRekonqCrashed) {          if (isFirstLoad)  // we are starting rekonq, for the first time with no args: use startup behaviour | 
