From: Peter Penz Date: Sat, 7 Aug 2010 18:26:22 +0000 (+0000) Subject: krazy fix: Use QString::clear() instead of assigning an empty string. X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/54218946184073b3e0ecdea6e41094b58bd586b9 krazy fix: Use QString::clear() instead of assigning an empty string. svn path=/trunk/KDE/kdebase/apps/; revision=1160315 --- 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(); }