diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-03-27 10:49:40 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-03-27 10:49:40 +0200 |
commit | fc7f946a0f9072f89c0775b02a41d314ee96ac5d (patch) | |
tree | 067da955475317dc1eca84a0f036373a40d8d670 | |
parent | Fix context menu and set comments to improve its code (after 0.7 release) (diff) | |
download | rekonq-fc7f946a0f9072f89c0775b02a41d314ee96ac5d.tar.xz |
Never execute deprecated code
-rw-r--r-- | src/webview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 3ec654ac..16c9c2e5 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -294,7 +294,7 @@ void WebView::contextMenuEvent(QContextMenuEvent *event) // TODO: REMOVE ME! // These actions are here just to NOT remove strings until stable release. // Just remove the lines here after that. -if (result.linkUrl().isEmpty()) +if (false) { QString truncatedURL; |