diff options
| author | Nathaniel Graham <[email protected]> | 2018-06-26 16:46:50 -0600 |
|---|---|---|
| committer | Nathaniel Graham <[email protected]> | 2018-06-27 14:29:48 -0600 |
| commit | b488dc01260e3a279380af0d344e26ae2d447342 (patch) | |
| tree | 763f13314412e838c446f4506c3cae481b38b6eb /src/settings/viewmodes/viewsettingstab.h | |
| parent | 280c97448141d0685806b46af4c80a354f601f26 (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/viewmodes/viewsettingstab.h')
| -rw-r--r-- | src/settings/viewmodes/viewsettingstab.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/settings/viewmodes/viewsettingstab.h b/src/settings/viewmodes/viewsettingstab.h index 0c1b8a3b5..fff882e5e 100644 --- a/src/settings/viewmodes/viewsettingstab.h +++ b/src/settings/viewmodes/viewsettingstab.h @@ -25,7 +25,7 @@ #include <QWidget> class DolphinFontRequester; -class KComboBox; +class QComboBox; class QCheckBox; class QSlider; @@ -69,8 +69,8 @@ private: QSlider* m_previewSizeSlider; DolphinFontRequester* m_fontRequester; - KComboBox* m_widthBox; - KComboBox* m_maxLinesBox; + QComboBox* m_widthBox; + QComboBox* m_maxLinesBox; QCheckBox* m_expandableFolders; }; |
