]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Drop old krazy comments
authorElvis Angelaccio <elvis.angelaccio@kde.org>
Sun, 16 Dec 2018 12:57:51 +0000 (13:57 +0100)
committerElvis Angelaccio <elvis.angelaccio@kde.org>
Sun, 16 Dec 2018 12:57:51 +0000 (13:57 +0100)
The `qclasses` check should no longer be an issue after the KF5 port.

GIT_SILENT

src/dolphinmainwindow.cpp

index 3ff2ad1e924b1a1c25ef3515090a04fa76b22c16..ff2ea900ccd822831afc9192689207bd6926014f 100644 (file)
@@ -551,7 +551,7 @@ void DolphinMainWindow::selectAll()
     // URL instead of all items of the view
 
     KUrlNavigator* urlNavigator = m_activeViewContainer->urlNavigator();
-    QLineEdit* lineEdit = urlNavigator->editor()->lineEdit(); // krazy:exclude=qclasses
+    QLineEdit* lineEdit = urlNavigator->editor()->lineEdit();
     const bool selectUrl = urlNavigator->isUrlEditable() &&
                            lineEdit->hasFocus();
     if (selectUrl) {
@@ -625,7 +625,7 @@ void DolphinMainWindow::replaceLocation()
     navigator->setFocus();
 
     // select the whole text of the combo box editor
-    QLineEdit* lineEdit = navigator->editor()->lineEdit();  // krazy:exclude=qclasses
+    QLineEdit* lineEdit = navigator->editor()->lineEdit();
     lineEdit->selectAll();
 }