author | zautrix <zautrix> | 2005-06-11 08:29:27 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-11 08:29:27 (UTC) |
commit | e0440717ce166afc312eba1c14d39e2bca813dfe (patch) (side-by-side diff) | |
tree | 18f5fd15404c67e490b3f88a5a9d84c5ebdce4ea | |
parent | ad60ed0d2434b2e67f469962e0aab3b3171f7d56 (diff) | |
download | kdepimpi-e0440717ce166afc312eba1c14d39e2bca813dfe.zip kdepimpi-e0440717ce166afc312eba1c14d39e2bca813dfe.tar.gz kdepimpi-e0440717ce166afc312eba1c14d39e2bca813dfe.tar.bz2 |
icons
-rw-r--r-- | bin/kdepim/korganizer/icons16/minus.png | bin | 0 -> 247 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/icons16/plus.png | bin | 888 -> 383 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/minus.png | bin | 0 -> 480 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/plus.png | bin | 1268 -> 487 bytes | |||
-rw-r--r-- | korganizer/kofilterview.cpp | 2 |
5 files changed, 1 insertions, 1 deletions
diff --git a/bin/kdepim/korganizer/icons16/minus.png b/bin/kdepim/korganizer/icons16/minus.png Binary files differnew file mode 100644 index 0000000..bfad708 --- a/dev/null +++ b/bin/kdepim/korganizer/icons16/minus.png diff --git a/bin/kdepim/korganizer/icons16/plus.png b/bin/kdepim/korganizer/icons16/plus.png Binary files differindex 7cee987..905061e 100644 --- a/bin/kdepim/korganizer/icons16/plus.png +++ b/bin/kdepim/korganizer/icons16/plus.png diff --git a/bin/kdepim/korganizer/minus.png b/bin/kdepim/korganizer/minus.png Binary files differnew file mode 100644 index 0000000..3aec4de --- a/dev/null +++ b/bin/kdepim/korganizer/minus.png diff --git a/bin/kdepim/korganizer/plus.png b/bin/kdepim/korganizer/plus.png Binary files differindex 5780059..2684b4f 100644 --- a/bin/kdepim/korganizer/plus.png +++ b/bin/kdepim/korganizer/plus.png diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index e379abc..1bfe4dd 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp @@ -111,49 +111,49 @@ KOCalEditView::KOCalEditView(QWidget* parent, QGridLayout* mainLayout = new QGridLayout ( this , 2, 6 ); QPushButton * addBut = new QPushButton ( this ); mainLayout->addWidget( addBut,0,0 ); addBut->setPixmap ( SmallIcon("plus")); connect(addBut,SIGNAL(clicked()),SLOT(addCal())); addBut->setMaximumWidth( addBut->sizeHint().height() ); addBut = new QPushButton ( this ); mainLayout->addWidget( addBut,0,1 ); addBut->setPixmap ( SmallIcon("eye")); connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); addBut->setMaximumWidth( addBut->sizeHint().height() ); QLabel* lab = new QLabel ( " "+i18n("Calendar")+" ", this ); mainLayout->addWidget( lab,0,2 ); addBut = new QPushButton ( this ); mainLayout->addWidget( addBut,0,3 ); addBut->setPixmap ( SmallIcon("bell")); connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); addBut->setMaximumWidth( addBut->sizeHint().height() ); addBut = new QPushButton ( this ); mainLayout->addWidget( addBut,0,4 ); - addBut->setPixmap ( SmallIcon("redcross16")); + addBut->setPixmap ( SmallIcon("pencil")); connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); addBut->setMaximumWidth( addBut->sizeHint().height() ); addBut = new QPushButton ( this ); mainLayout->addWidget( addBut,0,5 ); addBut->setPixmap ( SmallIcon("trash")); connect(addBut,SIGNAL(clicked()),SLOT(deleteAll())); addBut->setMaximumWidth( addBut->sizeHint().height() ); } KOCalEditView::~KOCalEditView() { // no need to delete child widgets, Qt does it all for us } void KOCalEditView::readConfig( KConfig *) { } void KOCalEditView::addCal() { qDebug("addcal "); |