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/dolphinfontrequester.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/dolphinfontrequester.h')
| -rw-r--r-- | src/settings/viewmodes/dolphinfontrequester.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings/viewmodes/dolphinfontrequester.h b/src/settings/viewmodes/dolphinfontrequester.h index 6f1b8400e..ac7ef222a 100644 --- a/src/settings/viewmodes/dolphinfontrequester.h +++ b/src/settings/viewmodes/dolphinfontrequester.h @@ -23,7 +23,7 @@ #include <QFont> #include <QWidget> -class KComboBox; +class QComboBox; class QPushButton; /** @@ -65,7 +65,7 @@ private slots: void changeMode(int index); private: - KComboBox* m_modeCombo; + QComboBox* m_modeCombo; QPushButton* m_chooseFontButton; Mode m_mode; |
