ipsservices/nmipssettings/src/nmipssettingslabeledcombobox.cpp
changeset 23 2dc6caa42ec3
parent 20 ecc8def7944a
child 27 9ba4404ef423
--- a/ipsservices/nmipssettings/src/nmipssettingslabeledcombobox.cpp	Mon May 03 12:23:15 2010 +0300
+++ b/ipsservices/nmipssettings/src/nmipssettingslabeledcombobox.cpp	Fri May 14 15:41:10 2010 +0300
@@ -26,7 +26,6 @@
     \brief The class implements a custom HbDataFormViewItem that combines a HbComboBox and HbLabel
     widgets that are linked. I.e. When the user selects changes the combobox's value, the label
     text is updated accordingly.
-
 */
 
 // ======== MEMBER FUNCTIONS ========
@@ -34,7 +33,8 @@
 /*!
     Constructor of NmIpsSettingsLabeledComboBox.
 */
-NmIpsSettingsLabeledComboBox::NmIpsSettingsLabeledComboBox(QGraphicsItem *parent, Qt::WindowFlags wFlags)
+NmIpsSettingsLabeledComboBox::NmIpsSettingsLabeledComboBox(
+    QGraphicsItem *parent, Qt::WindowFlags wFlags)
 : HbWidget(parent, wFlags)
 {
     // Create widget layout.
@@ -54,8 +54,9 @@
     layout->addItem(mLabel); // Takes ownership
 
     // Connect signals and slots.
-    connect(mComboBox, SIGNAL(currentIndexChanged(int)), 
+    connect(mComboBox, SIGNAL(currentIndexChanged(int)),
         this, SLOT(comboBoxIndexChanged(int)), Qt::UniqueConnection);
+
     connect(mComboBox, SIGNAL(currentIndexChanged(int)),
         this, SIGNAL(currentIndexChanged(int)), Qt::UniqueConnection);
 }
@@ -102,6 +103,7 @@
 {
     mComboBox->setItems(comboItems);
 }
+
 /*!
     Returns the current label texts.
     \return Label texts.