diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-01-26 02:11:29 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-01-26 02:11:29 +0100 |
commit | 1d9e3e220ffcb606a8bd1bd39da45e22e24e77a0 (patch) | |
tree | de7c4368b2d4ec48fae9980d312486e4339b49a3 /src/application.cpp | |
parent | MultiThreaded rekonq !! (diff) | |
download | rekonq-1d9e3e220ffcb606a8bd1bd39da45e22e24e77a0.tar.xz |
Cleaning code a bit..
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/application.cpp b/src/application.cpp index e9f0561d..05004f30 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -363,36 +363,6 @@ AdBlockManager *Application::adblockManager() } -// WebView *Application::createView(const Rekonq::OpenType &type) -// { -// // first, create the webview(s) to not let hangs UI.. -// WebTab *tab = 0; -// MainWindow *w = 0; -// w = (type == Rekonq::NewWindow) -// ? newMainWindow() -// : mainWindow(); -// -// switch(type) -// { -// case Rekonq::SettingOpenTab: -// tab = w->mainView()->newWebTab(!ReKonfig::openTabsBack(), ReKonfig::openTabsNearCurrent()); -// break; -// case Rekonq::NewCurrentTab: -// tab = w->mainView()->newWebTab(true); -// break; -// case Rekonq::NewBackTab: -// tab = w->mainView()->newWebTab(false, ReKonfig::openTabsNearCurrent()); -// break; -// case Rekonq::NewWindow: -// case Rekonq::CurrentTab: -// tab = w->mainView()->currentWebTab(); -// break; -// }; -// -// return tab->view(); -// } - - void Application::loadResolvedUrl(ThreadWeaver::Job *job) { FilterUrlJob *threadedJob = static_cast<FilterUrlJob *>(job); |