┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2010-08-07 18:26:22 +0000
committerPeter Penz <[email protected]>2010-08-07 18:26:22 +0000
commit54218946184073b3e0ecdea6e41094b58bd586b9 (patch)
tree3c2a8b3477ec080925f51daa81b1a7322a43b474
parent050992c5641e2de3d98df78ecfe91e9a5504c4cf (diff)
krazy fix: Use QString::clear() instead of assigning an empty string.
svn path=/trunk/KDE/kdebase/apps/; revision=1160315
-rw-r--r--src/views/dolphincategorydrawer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/dolphincategorydrawer.cpp b/src/views/dolphincategorydrawer.cpp
index 59743b7f5..3b2460772 100644
--- a/src/views/dolphincategorydrawer.cpp
+++ b/src/views/dolphincategorydrawer.cpp
@@ -374,5 +374,5 @@ void DolphinCategoryDrawer::mouseMoved(const QModelIndex &index, const QRect &,
void DolphinCategoryDrawer::mouseLeft(const QModelIndex &, const QRect &)
{
pos = QPoint();
- category = QString();
+ category.clear();
}