author | ulf69 <ulf69> | 2004-10-02 00:19:45 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-10-02 00:19:45 (UTC) |
commit | ba1176743a536e19bb8b9d68b1c0c0023a0f3101 (patch) (side-by-side diff) | |
tree | 352e97763d1b90eca9884651ab5533ef8ae8affc | |
parent | 7810fe355bd75c83bcdaed646cd1dde8d3c94fcb (diff) | |
download | kdepimpi-ba1176743a536e19bb8b9d68b1c0c0023a0f3101.zip kdepimpi-ba1176743a536e19bb8b9d68b1c0c0023a0f3101.tar.gz kdepimpi-ba1176743a536e19bb8b9d68b1c0c0023a0f3101.tar.bz2 |
fixed a crash when pressing return(enter) in the syncprofilenames combobox
-rw-r--r-- | libkdepim/ksyncprefsdialog.cpp | 3 | ||||
-rw-r--r-- | libkdepim/ksyncprofile.cpp | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/libkdepim/ksyncprefsdialog.cpp b/libkdepim/ksyncprefsdialog.cpp index 6e6e631..28aac45 100644 --- a/libkdepim/ksyncprefsdialog.cpp +++ b/libkdepim/ksyncprefsdialog.cpp @@ -131,8 +131,9 @@ void KSyncPrefsDialog::setupSyncAlgTab() connect ( button, SIGNAL( clicked()), this, SLOT (deleteProfile() ) ); mProfileBox = new QComboBox(topFrame); mProfileBox->setEditable ( true ); + mProfileBox->setInsertionPolicy(QComboBox::NoInsertion); connect ( mProfileBox, SIGNAL(activated ( int ) ), this, SLOT (profileChanged( int ) ) ); connect ( mProfileBox, SIGNAL( textChanged ( const QString & ) ), this, SLOT (textChanged( const QString & ) ) ); lab = new QLabel(mProfileBox, i18n("Profile:"), topFrame); @@ -346,9 +347,9 @@ void KSyncPrefsDialog::textChanged( const QString & s ) mSyncProfileNames[mProfileBox-> currentItem ()] = s; } void KSyncPrefsDialog::profileChanged( int item ) { - //qDebug("KSyncPrefsDialog::profileChanged %d ", item ); + //qDebug("KSyncPrefsDialog::profileChanged before %d, count %d ", item, mProfileBox->count() ); KSyncProfile* prof; saveProfile(); currentSelection = item; prof = mSyncProfiles.at(item) ; diff --git a/libkdepim/ksyncprofile.cpp b/libkdepim/ksyncprofile.cpp index a43ebe2..2bf4e6c 100644 --- a/libkdepim/ksyncprofile.cpp +++ b/libkdepim/ksyncprofile.cpp @@ -82,9 +82,9 @@ void KSyncProfile::setDefault() mRemoteFileName = "/home/polo/kdepim/apps/korganizer/localfile.ics"; mPreSyncCommandAB = i18n("command for downloading remote file to local device"); mPostSyncCommandAB = i18n("command for uploading local temp file to remote device"); mLocalTempFileAB = "/tmp/std.vcf"; - mRemoteFileNamePWM = "/home/polo/kdepim/apps/kabc/localfile.vcf"; + mRemoteFileNameAB = "/home/polo/kdepim/apps/kabc/localfile.vcf"; mPreSyncCommandPWM = i18n("command for downloading remote file to local device"); mPostSyncCommandPWM = i18n("command for uploading local temp file to remote device"); mLocalTempFilePWM = "/tmp/passwords.pwm"; mRemoteFileNamePWM = "/home/polo/kdepim/apps/pwmanager/localfile.pwm"; |