diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-07-26 18:51:13 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-07-26 18:51:13 +0200 |
commit | c2cf251dfe808e1a4e336dbf1cddc645d63c2e2f (patch) | |
tree | f038c3a38a7532cf15f1d988ac4ad9b6954228e3 /src/application.cpp | |
parent | Fixing a bit GooWiki actions and updating TODO (diff) | |
download | rekonq-c2cf251dfe808e1a4e336dbf1cddc645d63c2e2f.tar.xz |
A lot of fixes here:
- CTRL + click browsing
- mouse wheel gestures
- cleaning a bit web* classes
This has been possible restoring some code from rekonq 0.1 web classes
implementation.
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application.cpp b/src/application.cpp index 60d5ee48..cc34d946 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -97,7 +97,7 @@ int Application::newInstance() { for (int i = 0; i < args->count(); ++i) { - loadUrl(args->arg(i), Rekonq::NewTab); + loadUrl(args->arg(i), Rekonq::NewTab); } args->clear(); } |