author | zautrix <zautrix> | 2005-10-29 11:44:55 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-10-29 11:44:55 (UTC) |
commit | 9e4a837905ba2634cc5c451fec8821404c04da30 (patch) (side-by-side diff) | |
tree | e90a6cf9849fb7a781e0293e846f0dc646b7079c /kaddressbook/phoneeditwidget.h | |
parent | 126ae577622d43e17d8aeb1e66cafd9d16298cd2 (diff) | |
download | kdepimpi-9e4a837905ba2634cc5c451fec8821404c04da30.zip kdepimpi-9e4a837905ba2634cc5c451fec8821404c04da30.tar.gz kdepimpi-9e4a837905ba2634cc5c451fec8821404c04da30.tar.bz2 |
fixxx
Diffstat (limited to 'kaddressbook/phoneeditwidget.h') (more/less context) (show whitespace changes)
-rw-r--r-- | kaddressbook/phoneeditwidget.h | 2 |
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 @@ -95,16 +95,18 @@ public: PhoneTypeNumberEdit( QWidget *parent, const char *name = 0 ) :QWidget( parent ) { QHBoxLayout * lay = new QHBoxLayout( this ); lay->setSpacing( 2 ); lay->setMargin( 0 ); mMinusButton = new QPushButton ( this ); mMinusButton->setPixmap ( SmallIcon("minus")); mCombo = new KComboBox( this ); + if ( QApplication::desktop()->width() <= 640 ) + mCombo->setSizeLimit ( 6 ); mNumber = new KLineEdit( this ); mMinusButton->setMaximumHeight( mNumber->sizeHint().height() + 6); lay->addWidget( mMinusButton ); lay->addWidget( mCombo ); lay->addWidget( mNumber ); connect( mMinusButton , SIGNAL ( clicked() ), this, SLOT ( deleteNumber() ) ); connect( mCombo , SIGNAL ( activated ( int ) ), this, SLOT ( comboTypeChange( int ) ) ); connect( mNumber , SIGNAL ( textChanged ( const QString & ) ), |