-rw-r--r-- | korganizer/kofilterview.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index 3f08ef8..ff80afc 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp | |||
@@ -157,9 +157,12 @@ void KOCalEditView::selectCalAlarm(int id ,bool b ) | |||
157 | } | 157 | } |
158 | void KOCalEditView::selectReadOnly(int id ,bool b ) | 158 | void KOCalEditView::selectReadOnly(int id ,bool b ) |
159 | { | 159 | { |
160 | |||
161 | emit calendarReadonly ( id , b ); | ||
162 | KOPrefs::instance()->getCalendar( id )->isReadOnly = b; | ||
160 | if ( KOPrefs::instance()->getCalendar( id )->isStandard && b ) { | 163 | if ( KOPrefs::instance()->getCalendar( id )->isStandard && b ) { |
161 | findNewStandard(); | 164 | findNewStandard(); |
162 | } else { | 165 | } |
163 | if ( !b ){ | 166 | if ( !b ){ |
164 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | 167 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); |
165 | while ( kkf ) { | 168 | while ( kkf ) { |
@@ -170,10 +173,8 @@ void KOCalEditView::selectReadOnly(int id ,bool b ) | |||
170 | kkf = KOPrefs::instance()->mCalendars.next(); | 173 | kkf = KOPrefs::instance()->mCalendars.next(); |
171 | } | 174 | } |
172 | } | 175 | } |
173 | } | 176 | |
174 | mStdandardB.at(id-1)->setEnabled( !b ); | 177 | mStdandardB.at(id-1)->setEnabled( !b ); |
175 | emit calendarReadonly ( id , b ); | ||
176 | KOPrefs::instance()->getCalendar( id )->isReadOnly = b; | ||
177 | emit needsUpdate(); | 178 | emit needsUpdate(); |
178 | 179 | ||
179 | } | 180 | } |
@@ -244,21 +245,20 @@ void KOCalEditView::readConfig() | |||
244 | mainLayout = new QGridLayout ( mw , 2, 8 ); | 245 | mainLayout = new QGridLayout ( mw , 2, 8 ); |
245 | mainLayout->setMargin( 2 ); | 246 | mainLayout->setMargin( 2 ); |
246 | mainLayout->setSpacing( 2 ); | 247 | mainLayout->setSpacing( 2 ); |
247 | QPushButton * addBut = new QPushButton ( mw ); | 248 | QPushButton * addButT = new QPushButton ( mw ); |
248 | addBut->setFocusPolicy(NoFocus); | 249 | addButT->setFocusPolicy(NoFocus); |
249 | mainLayout->addWidget( addBut,0,0 ); | 250 | mainLayout->addWidget( addButT,0,0 ); |
250 | addBut->setText( "D"); | 251 | addButT->setText( "D"); |
251 | connect(addBut,SIGNAL(clicked()),SLOT(defaultInfo())); | 252 | connect(addButT,SIGNAL(clicked()),SLOT(defaultInfo())); |
252 | //addBut->setPixmap ( SmallIcon("greenhook16")); | 253 | //addBut->setPixmap ( SmallIcon("greenhook16")); |
253 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 254 | QPushButton *addBut = new QPushButton ( mw ); |
254 | int max = addBut->sizeHint().height(); | ||
255 | addBut = new QPushButton ( mw ); | ||
256 | addBut->setFocusPolicy(NoFocus); | 255 | addBut->setFocusPolicy(NoFocus); |
257 | mainLayout->addWidget( addBut,0,++ii ); | 256 | mainLayout->addWidget( addBut,0,++ii ); |
258 | addBut->setPixmap ( SmallIcon("eye")); | 257 | addBut->setPixmap ( SmallIcon("eye")); |
259 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); | 258 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); |
260 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 259 | int max = addBut->sizeHint().height(); |
261 | 260 | addBut->setMaximumWidth( max ); | |
261 | addButT->setFixedSize( QSize( max, max ) ); | ||
262 | QLabel* lab = new QLabel (i18n(" Calendar \n Resource "), mw ); | 262 | QLabel* lab = new QLabel (i18n(" Calendar \n Resource "), mw ); |
263 | mainLayout->addWidget( lab,0,++ii ); | 263 | mainLayout->addWidget( lab,0,++ii ); |
264 | //lab = new QLabel ( i18n(" "), mw ); | 264 | //lab = new QLabel ( i18n(" "), mw ); |