summaryrefslogtreecommitdiff
path: root/src/application.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-09-01 00:47:33 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-09-01 00:47:33 +0200
commit3b4d243c170ba45fdd1fc07cc24f3554c9e70857 (patch)
tree4782c2277ce76542787f522c97155f7941be9a82 /src/application.cpp
parentThis works as wrokaround for KIO missing implementation in DELETE & CUSTOM (diff)
downloadrekonq-3b4d243c170ba45fdd1fc07cc24f3554c9e70857.tar.xz
Let urlbar being usable also in fullscreen mode
BUG: 243900
Diffstat (limited to 'src/application.cpp')
-rw-r--r--src/application.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/application.cpp b/src/application.cpp
index d66e290f..5e7cbd57 100644
--- a/src/application.cpp
+++ b/src/application.cpp
@@ -228,7 +228,6 @@ int Application::newInstance()
}
}
-
if(isFirstLoad)
{
// give me some time to do the other things..
@@ -439,13 +438,13 @@ void Application::loadResolvedUrl(ThreadWeaver::Job *job)
KUrl url = threadedJob->url();
WebView *view = threadedJob->view();
- // Bye and thanks :)
- delete threadedJob;
-
if (view)
{
view->load(url);
}
+
+ // Bye and thanks :)
+ delete threadedJob;
}