From 93bc4dbbef774e28672c947281291b12d5971803 Mon Sep 17 00:00:00 2001 From: zautrix Date: Wed, 06 Jul 2005 21:48:53 +0000 Subject: fixxx --- diff --git a/bin/kdepim/korganizer/germantranslation.txt b/bin/kdepim/korganizer/germantranslation.txt index cb92677..bcc23dc 100644 --- a/bin/kdepim/korganizer/germantranslation.txt +++ b/bin/kdepim/korganizer/germantranslation.txt @@ -90,7 +90,6 @@ { "Center View","Zentriere Ansicht" }, { "Change","Ändere" }, { "Cinema","Kino" }, -{ "Click to add a new Todo","Hier klicken, um ein neues Todo anzulegen" }, { "Clone Item","Klone Eintrag" }, { "&Close","S&chließen" }, { "Close","Schließen" }, @@ -1494,6 +1493,7 @@ { "You can use and display more than one calendar file in KO/Pi. A calendar file is called a resource. To add a calendar or change calendar settings please use menu: View -> Toggle Resource View.","Sie können mehr als eine Kalenderdatei in KO/Pi darstellen und benutzen. Eine Kalenderdatei wird Resource genannt. Um einen Kalender hinzuzufügen oder die Kalendereinstellungen zu ändern benutzen Sie bitte das Menu: Ansicht -> Resourcenansicht umschalten." }, { "Hide Completed","Verstecke erledigte Todos" }, { "Show not Running","Zeige nicht Laufende" }, +{ "Click to add new Todo","Klick für neues Todo!" }, { "","" }, { "","" }, { "","" }, diff --git a/bin/kdepim/korganizer/today_small.png b/bin/kdepim/korganizer/today_small.png index fcc4ac2..3d2979f 100644 --- a/bin/kdepim/korganizer/today_small.png +++ b/bin/kdepim/korganizer/today_small.png Binary files differ diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index 06d40b1..2c017e1 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp @@ -476,19 +476,19 @@ void KOTodoListView::contentsMouseDoubleClickEvent(QMouseEvent *e) KOQuickTodo::KOQuickTodo(QWidget *parent) : QLineEdit(parent) { - setText(i18n("Click to add a new Todo")); + setText(i18n("Click to add new Todo")); } void KOQuickTodo::focusInEvent(QFocusEvent *ev) { - if ( text()==i18n("Click to add a new Todo") ) + if ( text()==i18n("Click to add new Todo") ) setText(""); QLineEdit::focusInEvent(ev); } void KOQuickTodo::focusOutEvent(QFocusEvent *ev) { - setText(i18n("Click to add a new Todo")); + setText(i18n("Click to add new Todo")); QLineEdit::focusOutEvent(ev); } @@ -523,10 +523,14 @@ KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) : allclose->setFixedWidth( fixwid ); connect ( allclose, SIGNAL ( clicked()), SLOT ( setAllClose())); QPushButton * s_done = new QPushButton( "D",mQuickBar ); + s_done->setPixmap( SmallIcon("greenhook16")); s_done->setFixedWidth( fixwid ); + s_done->setFixedHeight( flat->sizeHint().height() ); connect ( s_done, SIGNAL ( clicked()), SLOT ( toggleCompleted())); QPushButton * s_run = new QPushButton( "R",mQuickBar ); + s_run->setPixmap( SmallIcon("ko16old")); s_run->setFixedWidth( fixwid ); + s_run->setFixedHeight( flat->sizeHint().height() ); connect ( s_run, SIGNAL ( clicked()), SLOT ( toggleRunning())); mNewSubBut = new QPushButton( "sub",mQuickBar ); @@ -1118,7 +1122,7 @@ void KOTodoView::newSubTodo() { mActiveItem = (KOTodoViewItem*)mTodoListView->currentItem(); if (mActiveItem) { - if ( mQuickAdd->isVisible() && !mQuickAdd->text().isEmpty() && mQuickAdd->text() != i18n("Click to add a new Todo") ) { + if ( mQuickAdd->isVisible() && !mQuickAdd->text().isEmpty() && mQuickAdd->text() != i18n("Click to add new Todo") ) { addQuickTodoPar( mActiveItem->todo()); } else emit newSubTodoSignal(mActiveItem->todo()); -- cgit v0.9.0.2