author | zautrix <zautrix> | 2005-06-25 03:05:53 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-25 03:05:53 (UTC) |
commit | 5ee9f9bbbdfaa8c1bf9c07ce295fe3a6b0b49c98 (patch) (unidiff) | |
tree | d3b86860b2e829853c1cdc982e95fdfb252cc5e1 | |
parent | dcc7c9ed932ec2ef521aa04b929d0319f65c8bdc (diff) | |
download | kdepimpi-5ee9f9bbbdfaa8c1bf9c07ce295fe3a6b0b49c98.zip kdepimpi-5ee9f9bbbdfaa8c1bf9c07ce295fe3a6b0b49c98.tar.gz kdepimpi-5ee9f9bbbdfaa8c1bf9c07ce295fe3a6b0b49c98.tar.bz2 |
fixxx
-rw-r--r-- | korganizer/kofilterview.cpp | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index ea53043..ce2880a 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp | |||
@@ -143,228 +143,230 @@ void KOCalEditView::selectStdCal( int id, bool b ) | |||
143 | it->blockSignals( false ); | 143 | it->blockSignals( false ); |
144 | return; | 144 | return; |
145 | } | 145 | } |
146 | return; | 146 | return; |
147 | } | 147 | } |
148 | KOCalCheckButton* sen = (KOCalCheckButton*) sender(); | 148 | KOCalCheckButton* sen = (KOCalCheckButton*) sender(); |
149 | KOCalCheckButton* it = mStdandardB.first(); | 149 | KOCalCheckButton* it = mStdandardB.first(); |
150 | while ( it ) { | 150 | while ( it ) { |
151 | if ( it->isChecked() ) { | 151 | if ( it->isChecked() ) { |
152 | if ( it != sen ) { | 152 | if ( it != sen ) { |
153 | it->blockSignals( true ); | 153 | it->blockSignals( true ); |
154 | it->setChecked( false ); | 154 | it->setChecked( false ); |
155 | it->blockSignals( false ); | 155 | it->blockSignals( false ); |
156 | break; | 156 | break; |
157 | } | 157 | } |
158 | } | 158 | } |
159 | it = mStdandardB.next(); | 159 | it = mStdandardB.next(); |
160 | } | 160 | } |
161 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | 161 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); |
162 | while ( kkf ) { | 162 | while ( kkf ) { |
163 | kkf->isStandard = false; | 163 | kkf->isStandard = false; |
164 | kkf = KOPrefs::instance()->mCalendars.next(); | 164 | kkf = KOPrefs::instance()->mCalendars.next(); |
165 | } | 165 | } |
166 | KOPrefs::instance()->getCalendar( id )->isStandard = true; | 166 | KOPrefs::instance()->getCalendar( id )->isStandard = true; |
167 | emit setCalendarDefault ( id ); | 167 | emit setCalendarDefault ( id ); |
168 | } | 168 | } |
169 | 169 | ||
170 | void KOCalEditView::selectCalAlarm(int id ,bool b ) | 170 | void KOCalEditView::selectCalAlarm(int id ,bool b ) |
171 | { | 171 | { |
172 | KOPrefs::instance()->getCalendar( id )->isAlarmEnabled = b; | 172 | KOPrefs::instance()->getCalendar( id )->isAlarmEnabled = b; |
173 | emit alarmEnabled ( id , b ); | 173 | emit alarmEnabled ( id , b ); |
174 | emit needsUpdate(); | 174 | emit needsUpdate(); |
175 | } | 175 | } |
176 | void KOCalEditView::selectReadOnly(int id ,bool b ) | 176 | void KOCalEditView::selectReadOnly(int id ,bool b ) |
177 | { | 177 | { |
178 | KOPrefs::instance()->getCalendar( id )->isReadOnly = b; | 178 | KOPrefs::instance()->getCalendar( id )->isReadOnly = b; |
179 | emit calendarReadonly ( id , b ); | 179 | emit calendarReadonly ( id , b ); |
180 | if ( KOPrefs::instance()->getCalendar( id )->isStandard && b && id > 1 ) { | 180 | if ( KOPrefs::instance()->getCalendar( id )->isStandard && b && id > 1 ) { |
181 | KOPrefs::instance()->getCalendar( id )->isStandard = false; | 181 | KOPrefs::instance()->getCalendar( id )->isStandard = false; |
182 | KOPrefs::instance()->getCalendar( 1 )->isStandard = true; | 182 | KOPrefs::instance()->getCalendar( 1 )->isStandard = true; |
183 | emit setCalendarDefault ( 1 ); | 183 | emit setCalendarDefault ( 1 ); |
184 | } | 184 | } |
185 | emit needsUpdate(); | 185 | emit needsUpdate(); |
186 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); | 186 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); |
187 | 187 | ||
188 | } | 188 | } |
189 | void KOCalEditView::setColor( const QColor& c, int id ) | 189 | void KOCalEditView::setColor( const QColor& c, int id ) |
190 | { | 190 | { |
191 | KOPrefs::instance()->getCalendar( id )->mDefaultColor = c; | 191 | KOPrefs::instance()->getCalendar( id )->mDefaultColor = c; |
192 | emit needsUpdate(); | 192 | emit needsUpdate(); |
193 | } | 193 | } |
194 | void KOCalEditView::deleteCal( int id ) | 194 | void KOCalEditView::deleteCal( int id ) |
195 | { | 195 | { |
196 | KopiCalendarFile * kkf = KOPrefs::instance()->getCalendar( id ); | 196 | KopiCalendarFile * kkf = KOPrefs::instance()->getCalendar( id ); |
197 | QString name = kkf->mName; | 197 | QString name = kkf->mName; |
198 | QString file = KGlobal::formatMessage ( kkf->mFileName ,0 ); | 198 | QString file = KGlobal::formatMessage ( kkf->mFileName ,0 ); |
199 | if ( KMessageBox::warningContinueCancel( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b>. Do you want to remove this calendar from KO/Pi? (The file is not removed!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; | 199 | if ( KMessageBox::warningContinueCancel( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b>. Do you want to remove this calendar from KO/Pi? (The file is not removed!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; |
200 | if ( kkf->isStandard ) | 200 | if ( kkf->isStandard ) |
201 | selectStdCal( 1, true ); | 201 | selectStdCal( 1, true ); |
202 | emit removeCalendar ( id ); | 202 | emit removeCalendar ( id ); |
203 | KOPrefs::instance()->mCalendars.remove ( kkf ); | 203 | KOPrefs::instance()->mCalendars.remove ( kkf ); |
204 | emit needsUpdate(); | 204 | emit needsUpdate(); |
205 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); | 205 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); |
206 | } | 206 | } |
207 | void KOCalEditView::infoCal( int id ) | 207 | void KOCalEditView::infoCal( int id ) |
208 | { | 208 | { |
209 | QString name = KOPrefs::instance()->getCalendar( id )->mName; | 209 | QString name = KOPrefs::instance()->getCalendar( id )->mName; |
210 | QString file = KGlobal::formatMessage ( KOPrefs::instance()->getCalendar( id )->mFileName, 0 ); | 210 | QString file = KGlobal::formatMessage ( KOPrefs::instance()->getCalendar( id )->mFileName, 0 ); |
211 | if ( KOPrefs::instance()->getCalendar( id )->mErrorOnLoad ) { | 211 | if ( KOPrefs::instance()->getCalendar( id )->mErrorOnLoad ) { |
212 | if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar <b>%1</b> is not loaded! Loading of file <b>%2</b> failed! <b>Try again to load the calendar?</b>").arg(name).arg(file) ) ) { | 212 | if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar <b>%1</b> is not loaded! Loading of file <b>%2</b> failed! <b>Try again to load the calendar?</b>").arg(name).arg(file) ) ) { |
213 | emit calendarAdded( id ); | 213 | emit calendarAdded( id ); |
214 | emit needsUpdate(); | 214 | emit needsUpdate(); |
215 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); | 215 | QTimer::singleShot( 0, this, SLOT ( readConfig() ) ); |
216 | } | 216 | } |
217 | } | 217 | } |
218 | else | 218 | else |
219 | KMessageBox::information( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b>").arg(name).arg(file) ); | 219 | KMessageBox::information( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b>").arg(name).arg(file) ); |
220 | } | 220 | } |
221 | void KOCalEditView::readConfig() | 221 | void KOCalEditView::readConfig() |
222 | { | 222 | { |
223 | 223 | ||
224 | mStdandardB.clear(); | 224 | mStdandardB.clear(); |
225 | mEnabledB.clear(); | 225 | mEnabledB.clear(); |
226 | mAlarmB.clear(); | 226 | mAlarmB.clear(); |
227 | mROB.clear(); | 227 | mROB.clear(); |
228 | 228 | ||
229 | if ( mw ) delete mw; | 229 | if ( mw ) delete mw; |
230 | mw = new QWidget ( viewport() ); | 230 | mw = new QWidget ( viewport() ); |
231 | addChild(mw); | 231 | addChild(mw); |
232 | int ii = 0; | 232 | int ii = 0; |
233 | mainLayout = new QGridLayout ( mw , 2, 8 ); | 233 | mainLayout = new QGridLayout ( mw , 2, 8 ); |
234 | mainLayout->setMargin( 2 ); | 234 | mainLayout->setMargin( 2 ); |
235 | mainLayout->setSpacing( 2 ); | 235 | mainLayout->setSpacing( 2 ); |
236 | QPushButton * addBut = new QPushButton ( mw ); | 236 | QPushButton * addBut = new QPushButton ( mw ); |
237 | addBut->setFocusPolicy(NoFocus); | 237 | addBut->setFocusPolicy(NoFocus); |
238 | mainLayout->addWidget( addBut,0,0 ); | 238 | mainLayout->addWidget( addBut,0,0 ); |
239 | addBut->setPixmap ( SmallIcon("plus")); | 239 | addBut->setPixmap ( SmallIcon("greenhook16")); |
240 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); | ||
241 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 240 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
242 | int max = addBut->sizeHint().height(); | 241 | int max = addBut->sizeHint().height(); |
243 | addBut = new QPushButton ( mw ); | 242 | addBut = new QPushButton ( mw ); |
244 | addBut->setFocusPolicy(NoFocus); | 243 | addBut->setFocusPolicy(NoFocus); |
245 | mainLayout->addWidget( addBut,0,++ii ); | 244 | mainLayout->addWidget( addBut,0,++ii ); |
246 | addBut->setPixmap ( SmallIcon("eye")); | 245 | addBut->setPixmap ( SmallIcon("eye")); |
247 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); | 246 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); |
248 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 247 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
249 | 248 | ||
250 | QLabel* lab = new QLabel (i18n(" Calendar \n Resource "), mw ); | 249 | QLabel* lab = new QLabel (i18n(" Calendar \n Resource "), mw ); |
251 | mainLayout->addWidget( lab,0,++ii ); | 250 | mainLayout->addWidget( lab,0,++ii ); |
252 | //lab = new QLabel ( i18n(" "), mw ); | 251 | //lab = new QLabel ( i18n(" "), mw ); |
253 | //mainLayout->addWidget( lab,0,++ii ); | 252 | //mainLayout->addWidget( lab,0,++ii ); |
254 | //lab->setFixedWidth( 1 ); | 253 | //lab->setFixedWidth( 1 ); |
255 | addBut = new QPushButton ( mw ); | 254 | 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("bell")); | 257 | addBut->setPixmap ( SmallIcon("bell")); |
259 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); | 258 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); |
260 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 259 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
261 | 260 | ||
262 | addBut = new QPushButton ( mw ); | 261 | addBut = new QPushButton ( mw ); |
263 | addBut->setFocusPolicy(NoFocus); | 262 | addBut->setFocusPolicy(NoFocus); |
264 | mainLayout->addWidget( addBut,0,++ii ); | 263 | mainLayout->addWidget( addBut,0,++ii ); |
265 | addBut->setPixmap ( SmallIcon("pencil")); | 264 | addBut->setPixmap ( SmallIcon("pencil")); |
266 | connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); | 265 | connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); |
267 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 266 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
268 | |||
269 | lab = new QLabel ( i18n(" Color "), mw ); | ||
270 | mainLayout->addWidget( lab,0,++ii ); | ||
271 | lab = new QLabel ( "", mw ); | 267 | lab = new QLabel ( "", mw ); |
272 | mainLayout->addWidget( lab,0,++ii ); | 268 | mainLayout->addWidget( lab,0,++ii ); |
273 | lab->setMaximumWidth( max+4 ); | 269 | |
274 | lab = new QLabel ( "", mw ); | 270 | addBut = new QPushButton ( mw ); |
271 | addBut->setFocusPolicy(NoFocus); | ||
272 | mainLayout->addWidget( addBut,0,++ii ); | ||
273 | addBut->setPixmap ( SmallIcon("plus")); | ||
274 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); | ||
275 | |||
276 | lab = new QLabel ( " ", mw ); | ||
275 | mainLayout->addWidget( lab,0,++ii ); | 277 | mainLayout->addWidget( lab,0,++ii ); |
276 | 278 | ||
277 | 279 | ||
278 | #if 0 | 280 | #if 0 |
279 | addBut = new QPushButton ( mw ); | 281 | addBut = new QPushButton ( mw ); |
280 | mainLayout->addWidget( addBut,0,6 ); | 282 | mainLayout->addWidget( addBut,0,6 ); |
281 | addBut->setPixmap ( SmallIcon("minus")); | 283 | addBut->setPixmap ( SmallIcon("minus")); |
282 | connect(addBut,SIGNAL(clicked()),SLOT(deleteAll())); | 284 | connect(addBut,SIGNAL(clicked()),SLOT(deleteAll())); |
283 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 285 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
284 | #endif | 286 | #endif |
285 | 287 | ||
286 | 288 | ||
287 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | 289 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); |
288 | int row = 1; | 290 | int row = 1; |
289 | while ( kkf ) { | 291 | while ( kkf ) { |
290 | int iii = 0; | 292 | int iii = 0; |
291 | KOCalCheckButton* cb = new KOCalCheckButton( mw ); | 293 | KOCalCheckButton* cb = new KOCalCheckButton( mw ); |
292 | mainLayout->addWidget( cb,row,0 );mStdandardB.append( cb ); | 294 | mainLayout->addWidget( cb,row,0 );mStdandardB.append( cb ); |
293 | cb->setChecked( kkf->isStandard ); | 295 | cb->setChecked( kkf->isStandard ); |
294 | cb->setNum( kkf->mCalNumber ); | 296 | cb->setNum( kkf->mCalNumber ); |
295 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectStdCal(int,bool) ) ); | 297 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectStdCal(int,bool) ) ); |
296 | if ( kkf->mErrorOnLoad || kkf->isReadOnly ) | 298 | if ( kkf->mErrorOnLoad || kkf->isReadOnly ) |
297 | cb->setEnabled( false ); | 299 | cb->setEnabled( false ); |
298 | cb = new KOCalCheckButton( mw ); | 300 | cb = new KOCalCheckButton( mw ); |
299 | mainLayout->addWidget( cb,row,++iii );mEnabledB.append( cb ); | 301 | mainLayout->addWidget( cb,row,++iii );mEnabledB.append( cb ); |
300 | cb->setChecked( kkf->isEnabled ); | 302 | cb->setChecked( kkf->isEnabled ); |
301 | cb->setNum( kkf->mCalNumber ); | 303 | cb->setNum( kkf->mCalNumber ); |
302 | if ( kkf->mErrorOnLoad ) | 304 | if ( kkf->mErrorOnLoad ) |
303 | cb->setEnabled( false ); | 305 | cb->setEnabled( false ); |
304 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCal(int,bool) ) ); | 306 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCal(int,bool) ) ); |
305 | KOCalButton* name = new KOCalButton( mw ); | 307 | KOCalButton* name = new KOCalButton( mw ); |
306 | name->setNum( kkf->mCalNumber ); | 308 | name->setNum( kkf->mCalNumber ); |
307 | name->setText( kkf->mName ); | 309 | name->setText( kkf->mName ); |
308 | mainLayout->addWidget( name,row,++iii ); | 310 | mainLayout->addWidget( name,row,++iii ); |
309 | connect (name, SIGNAL (selectNum(int)), SLOT ( infoCal(int) ) ); | 311 | connect (name, SIGNAL (selectNum(int)), SLOT ( infoCal(int) ) ); |
310 | //lab = new QLabel (" ", mw ); | 312 | //lab = new QLabel (" ", mw ); |
311 | //mainLayout->addWidget( lab,row,++iii ); | 313 | //mainLayout->addWidget( lab,row,++iii ); |
312 | cb = new KOCalCheckButton( mw ); | 314 | cb = new KOCalCheckButton( mw ); |
313 | mainLayout->addWidget( cb,row,++iii );mAlarmB.append( cb ); | 315 | mainLayout->addWidget( cb,row,++iii );mAlarmB.append( cb ); |
314 | cb->setChecked( kkf->isAlarmEnabled ); | 316 | cb->setChecked( kkf->isAlarmEnabled ); |
315 | cb->setNum( kkf->mCalNumber ); | 317 | cb->setNum( kkf->mCalNumber ); |
316 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCalAlarm(int,bool) ) ); | 318 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCalAlarm(int,bool) ) ); |
317 | if ( kkf->mErrorOnLoad ) | 319 | if ( kkf->mErrorOnLoad ) |
318 | cb->setEnabled( false ); | 320 | cb->setEnabled( false ); |
319 | cb = new KOCalCheckButton( mw ); | 321 | cb = new KOCalCheckButton( mw ); |
320 | mainLayout->addWidget( cb,row,++iii );mROB.append( cb ); | 322 | mainLayout->addWidget( cb,row,++iii );mROB.append( cb ); |
321 | cb->setChecked( kkf->isReadOnly ); | 323 | cb->setChecked( kkf->isReadOnly ); |
322 | cb->setNum( kkf->mCalNumber ); | 324 | cb->setNum( kkf->mCalNumber ); |
323 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectReadOnly(int,bool) ) ); | 325 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectReadOnly(int,bool) ) ); |
324 | if ( kkf->mErrorOnLoad ) | 326 | if ( kkf->mErrorOnLoad ) |
325 | cb->setEnabled( false ); | 327 | cb->setEnabled( false ); |
326 | if ( row > 1) { | 328 | if ( row > 1) { |
327 | KColorButton *colb = new KColorButton( mw ); | 329 | KColorButton *colb = new KColorButton( mw ); |
328 | mainLayout->addWidget( colb,row,++iii ); | 330 | mainLayout->addWidget( colb,row,++iii ); |
329 | colb->setID( kkf->mCalNumber ); | 331 | colb->setID( kkf->mCalNumber ); |
330 | colb->setColor( kkf->mDefaultColor ); | 332 | colb->setColor( kkf->mDefaultColor ); |
331 | connect (colb, SIGNAL (changedID(const QColor&, int )), SLOT ( setColor(const QColor&,int) ) ); | 333 | connect (colb, SIGNAL (changedID(const QColor&, int )), SLOT ( setColor(const QColor&,int) ) ); |
332 | KOCalButton* calb = new KOCalButton( mw ); | 334 | KOCalButton* calb = new KOCalButton( mw ); |
333 | mainLayout->addWidget( calb,row,++iii ); | 335 | mainLayout->addWidget( calb,row,++iii ); |
334 | calb->setNum( kkf->mCalNumber ); | 336 | calb->setNum( kkf->mCalNumber ); |
335 | calb->setPixmap ( SmallIcon("minus")); | 337 | calb->setPixmap ( SmallIcon("minus")); |
336 | connect (calb, SIGNAL (selectNum(int)), SLOT ( deleteCal(int) ) ); | 338 | connect (calb, SIGNAL (selectNum(int)), SLOT ( deleteCal(int) ) ); |
337 | int hei = calb->sizeHint().height(); | 339 | int hei = calb->sizeHint().height(); |
338 | //calb->setMaximumSize( hei*9/10, hei*9/10 ); | 340 | //calb->setMaximumSize( hei*9/10, hei*9/10 ); |
339 | } | 341 | } |
340 | ++row; | 342 | ++row; |
341 | kkf = KOPrefs::instance()->mCalendars.next(); | 343 | kkf = KOPrefs::instance()->mCalendars.next(); |
342 | } | 344 | } |
343 | lab = new QLabel ( "", mw ); | 345 | lab = new QLabel ( "", mw ); |
344 | mainLayout->addWidget( lab,row,0 ); | 346 | mainLayout->addWidget( lab,row,0 ); |
345 | mw->show(); | 347 | mw->show(); |
346 | 348 | ||
347 | } | 349 | } |
348 | void KOCalEditView::addCal() | 350 | void KOCalEditView::addCal() |
349 | { | 351 | { |
350 | bool tryagain = true; | 352 | bool tryagain = true; |
351 | QString name, file; | 353 | QString name, file; |
352 | while ( tryagain ) { | 354 | while ( tryagain ) { |
353 | KONewCalPrefs prefs ( this ); | 355 | KONewCalPrefs prefs ( this ); |
354 | prefs.nameE->setText( name ); | 356 | prefs.nameE->setText( name ); |
355 | prefs.url->setURL( file ); | 357 | prefs.url->setURL( file ); |
356 | if ( ! prefs.exec() ) | 358 | if ( ! prefs.exec() ) |
357 | return; | 359 | return; |
358 | name = prefs.calName(); | 360 | name = prefs.calName(); |
359 | file = prefs.calFileName(); | 361 | file = prefs.calFileName(); |
360 | tryagain = false; | 362 | tryagain = false; |
361 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | 363 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); |
362 | while ( kkf ) { | 364 | while ( kkf ) { |
363 | if ( kkf->mName == name ) { | 365 | if ( kkf->mName == name ) { |
364 | KMessageBox::information( this, i18n("Sorry, the calendar name \n%1\nalready exists!\nPlease choose another name!").arg( name ) ); | 366 | KMessageBox::information( this, i18n("Sorry, the calendar name \n%1\nalready exists!\nPlease choose another name!").arg( name ) ); |
365 | name = ""; | 367 | name = ""; |
366 | tryagain = true; | 368 | tryagain = true; |
367 | break; | 369 | break; |
368 | } | 370 | } |
369 | if ( kkf->mFileName == file ) { | 371 | if ( kkf->mFileName == file ) { |
370 | KMessageBox::information( this, i18n("Sorry, the file \n%1\nis already loaded!\nPlease choose another file!").arg( KGlobal::formatMessage (file, 0 )) ); | 372 | KMessageBox::information( this, i18n("Sorry, the file \n%1\nis already loaded!\nPlease choose another file!").arg( KGlobal::formatMessage (file, 0 )) ); |