diff options
| author | Jordi Polo <[email protected]> | 2008-11-12 15:15:14 +0000 |
|---|---|---|
| committer | Jordi Polo <[email protected]> | 2008-11-12 15:15:14 +0000 |
| commit | 6705ce53811c6f4ab7abe208337d02054afaa57a (patch) | |
| tree | 8f72fa551ee0343acf8cfbc23c1d56a91935d153 /src/columnviewsettingspage.cpp | |
| parent | 576e998dcd2dcc7c3d992843b2c271d1ef8c13fa (diff) | |
Changed a bunch of QCombobox to KCombobox and other similar classes as
suggested by Krazy.
But I didn't see any improvement in the style or funcionality...
svn path=/trunk/KDE/kdebase/apps/; revision=883286
Diffstat (limited to 'src/columnviewsettingspage.cpp')
| -rw-r--r-- | src/columnviewsettingspage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/columnviewsettingspage.cpp b/src/columnviewsettingspage.cpp index cecc5f14e..27774cd33 100644 --- a/src/columnviewsettingspage.cpp +++ b/src/columnviewsettingspage.cpp @@ -27,10 +27,10 @@ #include <kdialog.h> #include <klocale.h> +#include <kcombobox.h> #include <QButtonGroup> #include <QCheckBox> -#include <QComboBox> #include <QGroupBox> #include <QHBoxLayout> #include <QLabel> @@ -73,7 +73,7 @@ ColumnViewSettingsPage::ColumnViewSettingsPage(QWidget* parent) : connect(m_fontRequester, SIGNAL(changed()), this, SIGNAL(changed())); QLabel* textWidthLabel = new QLabel(i18nc("@label:listbox", "Text width:"), textGroup); - m_textWidthBox = new QComboBox(textGroup); + m_textWidthBox = new KComboBox(textGroup); m_textWidthBox->addItem(i18nc("@item:inlistbox Text width", "Small")); m_textWidthBox->addItem(i18nc("@item:inlistbox Text width", "Medium")); m_textWidthBox->addItem(i18nc("@item:inlistbox Text width", "Large")); |
