summaryrefslogtreecommitdiffabout
path: root/korganizer
authorzautrix <zautrix>2005-07-29 17:41:39 (UTC)
committer zautrix <zautrix>2005-07-29 17:41:39 (UTC)
commit9553b882522708477d131d0d9a2c581724940ba3 (patch) (side-by-side diff)
treec44ccf8238ed9aa2991aad829dc75302b2992f9b /korganizer
parent2f3e1ae3d057b10aa6b4dbc3de109da32563dfb3 (diff)
downloadkdepimpi-9553b882522708477d131d0d9a2c581724940ba3.zip
kdepimpi-9553b882522708477d131d0d9a2c581724940ba3.tar.gz
kdepimpi-9553b882522708477d131d0d9a2c581724940ba3.tar.bz2
fixx
Diffstat (limited to 'korganizer') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/koeditordetails.cpp10
-rw-r--r--korganizer/koeditordetails.h2
2 files changed, 5 insertions, 7 deletions
diff --git a/korganizer/koeditordetails.cpp b/korganizer/koeditordetails.cpp
index 479bd8b..b90b9eb 100644
--- a/korganizer/koeditordetails.cpp
+++ b/korganizer/koeditordetails.cpp
@@ -117,8 +117,6 @@ KOEditorDetails::KOEditorDetails (int spacing,QWidget* parent,const char* name)
connect(mNameEdit,SIGNAL(textChanged(const QString &)),
SLOT(updateAttendeeItem()));
- mUidEdit = new QLineEdit(0);
- mUidEdit->setText("");
QLabel *emailLabel = new QLabel(this);
emailLabel->setText(i18n("Email:"));
@@ -355,7 +353,7 @@ void KOEditorDetails::setDefaults()
mOrganizerLabel->setText(i18n("Organizer: %1").arg(KOPrefs::instance()->email()));
mNameEdit->setText("");
- mUidEdit->setText("");
+ mUidEdit = "";
mEmailEdit->setText("");
mRoleCombo->setCurrentItem( 0 );
mStatusCombo->setCurrentItem( 0 );
@@ -418,7 +416,7 @@ void KOEditorDetails::updateAttendeeInput()
void KOEditorDetails::clearAttendeeInput()
{
mNameEdit->setText("");
- mUidEdit->setText("");
+ mUidEdit = "";
mEmailEdit->setText("");
mRoleCombo->setCurrentItem(0);
mStatusCombo->setCurrentItem(0);
@@ -431,7 +429,7 @@ void KOEditorDetails::fillAttendeeInput( AttendeeListItem *aItem )
Attendee *a = aItem->data();
mDisableItemUpdate = true;
mNameEdit->setText(a->name());
- mUidEdit->setText(a->uid());
+ mUidEdit = a->uid();
mEmailEdit->setText(a->email());
mRoleCombo->setCurrentItem(a->role());
mStatusCombo->setCurrentItem(a->status());
@@ -471,7 +469,7 @@ void KOEditorDetails::updateAttendeeItem()
Attendee *a = aItem->data();
a->setName( mNameEdit->text() );
- a->setUid( mUidEdit->text() );
+ a->setUid( mUidEdit );
a->setEmail( mEmailEdit->text() );
if ( mEmailEdit->text().isEmpty() )
mRsvpButton->setChecked( false );
diff --git a/korganizer/koeditordetails.h b/korganizer/koeditordetails.h
index a33ee82..5f8f6f2 100644
--- a/korganizer/koeditordetails.h
+++ b/korganizer/koeditordetails.h
@@ -91,7 +91,7 @@ class KOEditorDetails : public QWidget
bool mDisableItemUpdate;
QLineEdit *mNameEdit;
- QLineEdit *mUidEdit;
+ QString mUidEdit;
QLineEdit *mEmailEdit;
KListView *mListView;
QComboBox* mRoleCombo;