author | zautrix <zautrix> | 2005-06-11 08:12:33 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-11 08:12:33 (UTC) |
commit | ad60ed0d2434b2e67f469962e0aab3b3171f7d56 (patch) (unidiff) | |
tree | 5f795cf81afab90e91599a84e11378dd9b4aa864 | |
parent | 53c616e1fe8855211377aab41b3359df5fea456c (diff) | |
download | kdepimpi-ad60ed0d2434b2e67f469962e0aab3b3171f7d56.zip kdepimpi-ad60ed0d2434b2e67f469962e0aab3b3171f7d56.tar.gz kdepimpi-ad60ed0d2434b2e67f469962e0aab3b3171f7d56.tar.bz2 |
icons
-rw-r--r-- | bin/kdepim/korganizer/bell.png | bin | 639 -> 1449 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/eye.png | bin | 0 -> 1339 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/icons16/bell.png | bin | 639 -> 873 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/icons16/eye.png | bin | 0 -> 945 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/icons16/plus.png | bin | 0 -> 888 bytes | |||
-rw-r--r-- | bin/kdepim/korganizer/plus.png | bin | 0 -> 1268 bytes | |||
-rw-r--r-- | korganizer/kofilterview.cpp | 6 |
7 files changed, 3 insertions, 3 deletions
diff --git a/bin/kdepim/korganizer/bell.png b/bin/kdepim/korganizer/bell.png index 46ab9e3..0b15133 100644 --- a/bin/kdepim/korganizer/bell.png +++ b/bin/kdepim/korganizer/bell.png | |||
Binary files differ | |||
diff --git a/bin/kdepim/korganizer/eye.png b/bin/kdepim/korganizer/eye.png new file mode 100644 index 0000000..fd70996 --- a/dev/null +++ b/bin/kdepim/korganizer/eye.png | |||
Binary files differ | |||
diff --git a/bin/kdepim/korganizer/icons16/bell.png b/bin/kdepim/korganizer/icons16/bell.png index 46ab9e3..bd92cb1 100644 --- a/bin/kdepim/korganizer/icons16/bell.png +++ b/bin/kdepim/korganizer/icons16/bell.png | |||
Binary files differ | |||
diff --git a/bin/kdepim/korganizer/icons16/eye.png b/bin/kdepim/korganizer/icons16/eye.png new file mode 100644 index 0000000..4c5b163 --- a/dev/null +++ b/bin/kdepim/korganizer/icons16/eye.png | |||
Binary files differ | |||
diff --git a/bin/kdepim/korganizer/icons16/plus.png b/bin/kdepim/korganizer/icons16/plus.png new file mode 100644 index 0000000..7cee987 --- a/dev/null +++ b/bin/kdepim/korganizer/icons16/plus.png | |||
Binary files differ | |||
diff --git a/bin/kdepim/korganizer/plus.png b/bin/kdepim/korganizer/plus.png new file mode 100644 index 0000000..5780059 --- a/dev/null +++ b/bin/kdepim/korganizer/plus.png | |||
Binary files differ | |||
diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index 64675ad..e379abc 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp | |||
@@ -111,13 +111,13 @@ KOCalEditView::KOCalEditView(QWidget* parent, | |||
111 | QGridLayout* mainLayout = new QGridLayout ( this , 2, 6 ); | 111 | QGridLayout* mainLayout = new QGridLayout ( this , 2, 6 ); |
112 | QPushButton * addBut = new QPushButton ( this ); | 112 | QPushButton * addBut = new QPushButton ( this ); |
113 | mainLayout->addWidget( addBut,0,0 ); | 113 | mainLayout->addWidget( addBut,0,0 ); |
114 | addBut->setPixmap ( SmallIcon("redcross16")); | 114 | addBut->setPixmap ( SmallIcon("plus")); |
115 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); | 115 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); |
116 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 116 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
117 | 117 | ||
118 | addBut = new QPushButton ( this ); | 118 | addBut = new QPushButton ( this ); |
119 | mainLayout->addWidget( addBut,0,1 ); | 119 | mainLayout->addWidget( addBut,0,1 ); |
120 | addBut->setPixmap ( SmallIcon("redcross16")); | 120 | addBut->setPixmap ( SmallIcon("eye")); |
121 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); | 121 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); |
122 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 122 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
123 | 123 | ||
@@ -126,7 +126,7 @@ KOCalEditView::KOCalEditView(QWidget* parent, | |||
126 | 126 | ||
127 | addBut = new QPushButton ( this ); | 127 | addBut = new QPushButton ( this ); |
128 | mainLayout->addWidget( addBut,0,3 ); | 128 | mainLayout->addWidget( addBut,0,3 ); |
129 | addBut->setPixmap ( SmallIcon("redcross16")); | 129 | addBut->setPixmap ( SmallIcon("bell")); |
130 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); | 130 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); |
131 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 131 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
132 | 132 | ||