summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/contacteditor.cpp
authoreilers <eilers>2003-02-17 14:21:37 (UTC)
committer eilers <eilers>2003-02-17 14:21:37 (UTC)
commit85c45fe1fb1967135a7c11c27d54724edd29a4c9 (patch) (side-by-side diff)
tree6c4ba5057460299f298daf94c665b7a668c04292 /core/pim/addressbook/contacteditor.cpp
parent24344a3c43b20e1cd8b9ecbf73031b744cdf8197 (diff)
downloadopie-85c45fe1fb1967135a7c11c27d54724edd29a4c9.zip
opie-85c45fe1fb1967135a7c11c27d54724edd29a4c9.tar.gz
opie-85c45fe1fb1967135a7c11c27d54724edd29a4c9.tar.bz2
I hope translation is fixed, now !
Diffstat (limited to 'core/pim/addressbook/contacteditor.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/contacteditor.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp
index d830ad3..9efb8c0 100644
--- a/core/pim/addressbook/contacteditor.cpp
+++ b/core/pim/addressbook/contacteditor.cpp
@@ -549,12 +549,14 @@ void ContactEditor::init() {
// Create Labels and lineedit fields for every dynamic entry
QStringList::ConstIterator it = slDynamicEntries.begin();
QStringList::ConstIterator trit = trlDynamicEntries.begin();
+ QMap<QString, int> mapStrToID = OContactFields::untrFieldsToId();
+ QMap<int, QString> mapIdToStr = OContactFields::idToTrFields();
for (i = counter; it != slDynamicEntries.end(); i++, ++it, ++trit) {
if (((*it) == "Anniversary") ||
((*it) == "Birthday")|| ((*it) == "Gender")) continue;
- l = new QLabel( (*it).utf8() , container );
+ l = new QLabel( mapIdToStr[mapStrToID[*it]].utf8() , container );
listName.append( l );
gl->addWidget( l, i, 0 );
QLineEdit *e = new QLineEdit( container );