summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2005-01-26 12:45:38 (UTC)
committer zautrix <zautrix>2005-01-26 12:45:38 (UTC)
commit96fc3903cf690957d0242d7aa2894bd64800edcc (patch) (side-by-side diff)
tree6d4f6f565ffc2a0e72a55a5e4ff3c7d6bb08cbe0
parentebe38bec081a9ab226ea0de7e38ac2377d6bd1c0 (diff)
downloadkdepimpi-96fc3903cf690957d0242d7aa2894bd64800edcc.zip
kdepimpi-96fc3903cf690957d0242d7aa2894bd64800edcc.tar.gz
kdepimpi-96fc3903cf690957d0242d7aa2894bd64800edcc.tar.bz2
small fixes
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--bin/kdepim/korganizer/germantranslation.txt2
-rw-r--r--kaddressbook/views/kaddressbooktableview.cpp1
-rw-r--r--korganizer/koeditorgeneralevent.cpp2
3 files changed, 3 insertions, 2 deletions
diff --git a/bin/kdepim/korganizer/germantranslation.txt b/bin/kdepim/korganizer/germantranslation.txt
index d260be3..73940c6 100644
--- a/bin/kdepim/korganizer/germantranslation.txt
+++ b/bin/kdepim/korganizer/germantranslation.txt
@@ -58,7 +58,7 @@
{ "Agenda view background color:","Hintergrund der Agenda Ansicht:" },
{ "All attendees","Alle Teilnehmer" },
{ "AllDayAgenda Height:","Höhe Ganztages Agenda:" },
-{ "Allday","Ganztägig" },
+{ "All day event","Ganztägig" },
{ "Anonymous","Anonym" },
{ "Apply","Anwenden" },
{ "Apr","Apr" },
diff --git a/kaddressbook/views/kaddressbooktableview.cpp b/kaddressbook/views/kaddressbooktableview.cpp
index 69802a4..b73ceaa 100644
--- a/kaddressbook/views/kaddressbooktableview.cpp
+++ b/kaddressbook/views/kaddressbooktableview.cpp
@@ -177,6 +177,7 @@ void KAddressBookTableView::doSearch( const QString& s, KABC::Field *field )
if (re.match((*fieldIt)->value( *it ).lower()) != -1)
#endif
{
+ //qDebug("match %s %s %s", pattern.latin1(), (*fieldIt)->value( *it ).latin1(), (*fieldIt)->label().latin1() );
ContactListViewItem *item = new ContactListViewItem(*it, mListView, addressBook(), fields());
break;
}
diff --git a/korganizer/koeditorgeneralevent.cpp b/korganizer/koeditorgeneralevent.cpp
index 30b792b..adc733b 100644
--- a/korganizer/koeditorgeneralevent.cpp
+++ b/korganizer/koeditorgeneralevent.cpp
@@ -118,7 +118,7 @@ void KOEditorGeneralEvent::initTime(QWidget *parent,QBoxLayout *topLayout)
layoutTimeBox->addWidget(mEndTimeEdit,1,2);
QWidget* duration = new QWidget( timeBoxFrame );
QHBoxLayout *flagsBox = new QHBoxLayout( duration );
- mNoTimeButton = new QCheckBox(i18n("Allday"),duration);
+ mNoTimeButton = new QCheckBox(i18n("All day event"),duration);
flagsBox->addWidget(mNoTimeButton);
connect(mNoTimeButton, SIGNAL(toggled(bool)),SLOT(dontAssociateTime(bool)));
mDurationLabel = new QLabel( duration );