summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--kaddressbook/phoneeditwidget.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/kaddressbook/phoneeditwidget.h b/kaddressbook/phoneeditwidget.h
index fbf9fe7..f61087b 100644
--- a/kaddressbook/phoneeditwidget.h
+++ b/kaddressbook/phoneeditwidget.h
@@ -91,24 +91,26 @@ class PhoneEditWidget : public QWidget
91class PhoneTypeNumberEdit : public QWidget 91class PhoneTypeNumberEdit : public QWidget
92{ 92{
93 Q_OBJECT 93 Q_OBJECT
94public: 94public:
95 PhoneTypeNumberEdit( QWidget *parent, const char *name = 0 ) :QWidget( parent ) 95 PhoneTypeNumberEdit( QWidget *parent, const char *name = 0 ) :QWidget( parent )
96 { 96 {
97 QHBoxLayout * lay = new QHBoxLayout( this ); 97 QHBoxLayout * lay = new QHBoxLayout( this );
98 lay->setSpacing( 2 ); 98 lay->setSpacing( 2 );
99 lay->setMargin( 0 ); 99 lay->setMargin( 0 );
100 mMinusButton = new QPushButton ( this ); 100 mMinusButton = new QPushButton ( this );
101 mMinusButton->setPixmap ( SmallIcon("minus")); 101 mMinusButton->setPixmap ( SmallIcon("minus"));
102 mCombo = new KComboBox( this ); 102 mCombo = new KComboBox( this );
103 if ( QApplication::desktop()->width() <= 640 )
104 mCombo->setSizeLimit ( 6 );
103 mNumber = new KLineEdit( this ); 105 mNumber = new KLineEdit( this );
104 mMinusButton->setMaximumHeight( mNumber->sizeHint().height() + 6); 106 mMinusButton->setMaximumHeight( mNumber->sizeHint().height() + 6);
105 lay->addWidget( mMinusButton ); 107 lay->addWidget( mMinusButton );
106 lay->addWidget( mCombo ); 108 lay->addWidget( mCombo );
107 lay->addWidget( mNumber ); 109 lay->addWidget( mNumber );
108 connect( mMinusButton , SIGNAL ( clicked() ), this, SLOT ( deleteNumber() ) ); 110 connect( mMinusButton , SIGNAL ( clicked() ), this, SLOT ( deleteNumber() ) );
109 connect( mCombo , SIGNAL ( activated ( int ) ), this, SLOT ( comboTypeChange( int ) ) ); 111 connect( mCombo , SIGNAL ( activated ( int ) ), this, SLOT ( comboTypeChange( int ) ) );
110 connect( mNumber , SIGNAL ( textChanged ( const QString & ) ), 112 connect( mNumber , SIGNAL ( textChanged ( const QString & ) ),
111 this, SLOT ( textChanged ( const QString & ) ) ); 113 this, SLOT ( textChanged ( const QString & ) ) );
112 mCombo->insertStringList( PhoneNumber::supportedTypeListNames() ); 114 mCombo->insertStringList( PhoneNumber::supportedTypeListNames() );
113 } 115 }
114 ~PhoneTypeNumberEdit() { 116 ~PhoneTypeNumberEdit() {