diff options
| author | Peter Penz <[email protected]> | 2010-08-07 18:26:22 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2010-08-07 18:26:22 +0000 |
| commit | 54218946184073b3e0ecdea6e41094b58bd586b9 (patch) | |
| tree | 3c2a8b3477ec080925f51daa81b1a7322a43b474 | |
| parent | 050992c5641e2de3d98df78ecfe91e9a5504c4cf (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.cpp | 2 |
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(); } |
