┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings/viewpropertiesdialog.h
diff options
context:
space:
mode:
authorNathaniel Graham <[email protected]>2018-06-26 16:46:50 -0600
committerNathaniel Graham <[email protected]>2018-06-27 14:29:48 -0600
commitb488dc01260e3a279380af0d344e26ae2d447342 (patch)
tree763f13314412e838c446f4506c3cae481b38b6eb /src/settings/viewpropertiesdialog.h
parent280c97448141d0685806b46af4c80a354f601f26 (diff)
Port from KComboBox to QComboBox
Summary: None of Dolphin's current usages of `KComboBox` use any of its additional features beyond `QComboBox`, so let's use `QComboBox` instead. Test Plan: Tested all features that use comboboxes in Dolphin. No visual or functional changes or regressions. Reviewers: #dolphin, elvisangelaccio, broulik Reviewed By: #dolphin, elvisangelaccio Subscribers: broulik, kfm-devel Tags: #dolphin Differential Revision: https://phabricator.kde.org/D13749
Diffstat (limited to 'src/settings/viewpropertiesdialog.h')
-rw-r--r--src/settings/viewpropertiesdialog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/settings/viewpropertiesdialog.h b/src/settings/viewpropertiesdialog.h
index 80cddbf4e..aabf21c90 100644
--- a/src/settings/viewpropertiesdialog.h
+++ b/src/settings/viewpropertiesdialog.h
@@ -28,7 +28,7 @@
class QCheckBox;
class QListWidget;
class QListWidgetItem;
-class KComboBox;
+class QComboBox;
class QPushButton;
class QRadioButton;
class ViewProperties;
@@ -76,9 +76,9 @@ private:
DolphinView* m_dolphinView;
ViewProperties* m_viewProps;
- KComboBox* m_viewMode;
- KComboBox* m_sortOrder;
- KComboBox* m_sorting;
+ QComboBox* m_viewMode;
+ QComboBox* m_sortOrder;
+ QComboBox* m_sorting;
QCheckBox* m_sortFoldersFirst;
QCheckBox* m_previewsShown;
QCheckBox* m_showInGroups;