┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/iconsviewsettingspage.cpp
diff options
context:
space:
mode:
authorJordi Polo <[email protected]>2008-11-12 15:15:14 +0000
committerJordi Polo <[email protected]>2008-11-12 15:15:14 +0000
commit6705ce53811c6f4ab7abe208337d02054afaa57a (patch)
tree8f72fa551ee0343acf8cfbc23c1d56a91935d153 /src/iconsviewsettingspage.cpp
parent576e998dcd2dcc7c3d992843b2c271d1ef8c13fa (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/iconsviewsettingspage.cpp')
-rw-r--r--src/iconsviewsettingspage.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/iconsviewsettingspage.cpp b/src/iconsviewsettingspage.cpp
index 328bdb94b..8273234eb 100644
--- a/src/iconsviewsettingspage.cpp
+++ b/src/iconsviewsettingspage.cpp
@@ -30,9 +30,9 @@
#include <kiconloader.h>
#include <kglobalsettings.h>
#include <klocale.h>
+#include <kcombobox.h>
#include <QCheckBox>
-#include <QComboBox>
#include <QGroupBox>
#include <QLabel>
#include <QListView>
@@ -87,7 +87,7 @@ IconsViewSettingsPage::IconsViewSettingsPage(QWidget* parent) :
connect(m_textlinesCountBox, SIGNAL(valueChanged(int)), 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"));
@@ -107,13 +107,13 @@ IconsViewSettingsPage::IconsViewSettingsPage(QWidget* parent) :
gridGroup->setSizePolicy(sizePolicy);
QLabel* arrangementLabel = new QLabel(i18nc("@label:listbox", "Arrangement:"), gridGroup);
- m_arrangementBox = new QComboBox(gridGroup);
+ m_arrangementBox = new KComboBox(gridGroup);
m_arrangementBox->addItem(i18nc("@item:inlistbox Arrangement", "Columns"));
m_arrangementBox->addItem(i18nc("@item:inlistbox Arrangement", "Rows"));
connect(m_arrangementBox, SIGNAL(activated(int)), this, SIGNAL(changed()));
QLabel* gridSpacingLabel = new QLabel(i18nc("@label:listbox", "Grid spacing:"), gridGroup);
- m_gridSpacingBox = new QComboBox(gridGroup);
+ m_gridSpacingBox = new KComboBox(gridGroup);
m_gridSpacingBox->addItem(i18nc("@item:inlistbox Grid spacing", "None"));
m_gridSpacingBox->addItem(i18nc("@item:inlistbox Grid spacing", "Small"));
m_gridSpacingBox->addItem(i18nc("@item:inlistbox Grid spacing", "Medium"));