summaryrefslogtreecommitdiff
path: root/src/paneltreeview.cpp
diff options
context:
space:
mode:
authorPierre Rossi <pierre.rossi@gmail.com>2011-02-24 18:35:20 +0100
committerAndrea Diamantini <adjam7@gmail.com>2011-02-24 18:38:45 +0100
commit23b44d0344304499ba8e1f199720202381920827 (patch)
treeedd144e38d6dc3619b8b889f3a80a69a8dc52180 /src/paneltreeview.cpp
parentSave one updateRightIcons call from the bookmark icon. (diff)
downloadrekonq-23b44d0344304499ba8e1f199720202381920827.tar.xz
No more static members in the Application class,
an rApp shortcut for Application::instance, clean up code switching to use the new shortcut Reviewed by: adjam
Diffstat (limited to 'src/paneltreeview.cpp')
-rw-r--r--src/paneltreeview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/paneltreeview.cpp b/src/paneltreeview.cpp
index e44fa5fe..479bf018 100644
--- a/src/paneltreeview.cpp
+++ b/src/paneltreeview.cpp
@@ -164,7 +164,7 @@ void PanelTreeView::copyToClipboard()
if (!index.isValid())
return;
- QClipboard *cb = Application::clipboard();
+ QClipboard *cb = QApplication::clipboard();
cb->setText(qVariantValue< KUrl >(index.data(Qt::UserRole)).url());
}