-rw-r--r-- | kaddressbook/kabcore.cpp | 8 | ||||
-rw-r--r-- | kaddressbook/kaimportoldialog.cpp | 46 | ||||
-rw-r--r-- | korganizer/koimportoldialog.cpp | 3 | ||||
-rw-r--r-- | korganizer/mainwindow.cpp | 8 |
4 files changed, 57 insertions, 8 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 980e436..1074a62 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -331,6 +331,8 @@ KABCore::~KABCore() | |||
331 | 331 | ||
332 | delete syncManager; | 332 | delete syncManager; |
333 | #ifndef DESKTOP_VERSION | ||
333 | if ( infrared ) | 334 | if ( infrared ) |
334 | delete infrared; | 335 | delete infrared; |
336 | #endif | ||
335 | } | 337 | } |
336 | void KABCore::receive( const QCString& cmsg, const QByteArray& data ) | 338 | void KABCore::receive( const QCString& cmsg, const QByteArray& data ) |
@@ -368,15 +370,17 @@ void KABCore::toggleBeamReceive( ) | |||
368 | void KABCore::disableBR(bool b) | 370 | void KABCore::disableBR(bool b) |
369 | { | 371 | { |
372 | #ifndef DESKTOP_VERSION | ||
370 | if ( b ) { | 373 | if ( b ) { |
371 | if ( infrared ) { | 374 | if ( infrared ) { |
372 | toggleBeamReceive( ); | 375 | toggleBeamReceive( ); |
373 | mBRdisabled = true; | ||
374 | } | 376 | } |
377 | mBRdisabled = true; | ||
375 | } else { | 378 | } else { |
376 | if ( mBRdisabled ) { | 379 | if ( mBRdisabled ) { |
377 | mBRdisabled = false; | 380 | mBRdisabled = false; |
378 | toggleBeamReceive( ); | 381 | //toggleBeamReceive( ); |
379 | } | 382 | } |
380 | } | 383 | } |
384 | #endif | ||
381 | 385 | ||
382 | } | 386 | } |
diff --git a/kaddressbook/kaimportoldialog.cpp b/kaddressbook/kaimportoldialog.cpp index 10e3c76..848d8af 100644 --- a/kaddressbook/kaimportoldialog.cpp +++ b/kaddressbook/kaimportoldialog.cpp | |||
@@ -30,4 +30,5 @@ | |||
30 | #include <qdatetime.h> | 30 | #include <qdatetime.h> |
31 | #include <qdir.h> | 31 | #include <qdir.h> |
32 | #include <qregexp.h> | ||
32 | #include <qapplication.h> | 33 | #include <qapplication.h> |
33 | #include <qhbox.h> | 34 | #include <qhbox.h> |
@@ -268,6 +269,7 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
268 | //addressee.setTitle( QString::fromUcs2(aItem->GetJobTitle().GetBuffer()) );// titel is the prefix | 269 | //addressee.setTitle( QString::fromUcs2(aItem->GetJobTitle().GetBuffer()) );// titel is the prefix |
269 | addressee.setRole( QString::fromUcs2(aItem->GetJobTitle().GetBuffer()) ); | 270 | addressee.setRole( QString::fromUcs2(aItem->GetJobTitle().GetBuffer()) ); |
270 | addressee.setOrganization( QString::fromUcs2(aItem->GetCompanyName().GetBuffer()) ); | 271 | addressee.setOrganization( QString::fromUcs2(aItem->GetCompanyName().GetBuffer()).replace( QRegExp("\\r"), "") ); |
271 | QString notesStr = QString::fromUcs2(aItem->GetBody().GetBuffer()); | 272 | QString notesStr = QString::fromUcs2(aItem->GetBody().GetBuffer()); |
273 | notesStr.replace( QRegExp("\\r"), ""); | ||
272 | 274 | ||
273 | addressee.setProductId( QString::fromUcs2(aItem->GetCustomerID().GetBuffer()) ); | 275 | addressee.setProductId( QString::fromUcs2(aItem->GetCustomerID().GetBuffer()) ); |
@@ -292,5 +294,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
292 | if ( !tempS.isEmpty() ) | 294 | if ( !tempS.isEmpty() ) |
293 | addressee.insertCustom( "KADDRESSBOOK", "X-Department", tempS ); | 295 | addressee.insertCustom( "KADDRESSBOOK", "X-Department", tempS ); |
294 | tempS = QString::fromUcs2(aItem->GetOfficeLocation().GetBuffer()); | 296 | tempS = QString::fromUcs2(aItem->GetOfficeLocation().GetBuffer()).replace( QRegExp("\\r"), ""); |
295 | if ( !tempS.isEmpty() ) | 297 | if ( !tempS.isEmpty() ) |
296 | addressee.insertCustom( "KADDRESSBOOK", "X-Office",tempS ); | 298 | addressee.insertCustom( "KADDRESSBOOK", "X-Office",tempS ); |
@@ -311,5 +313,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
311 | //addressee.setSound( const Sound &sound ); | 313 | //addressee.setSound( const Sound &sound ); |
312 | //addressee.setAgent( const Agent &agent ); | 314 | //addressee.setAgent( const Agent &agent ); |
313 | QString cat = QString::fromUcs2( aItem->GetCategories().GetBuffer()); | 315 | QString cat = QString::fromUcs2( aItem->GetCategories().GetBuffer()).replace( QRegExp("\\r"), ""); |
314 | addressee.setCategories( QStringList::split( ";", cat )); | 316 | addressee.setCategories( QStringList::split( ";", cat )); |
315 | 317 | ||
@@ -397,4 +399,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
397 | bool insert = false; | 399 | bool insert = false; |
398 | phoneS = QString::fromUcs2( aItem->GetHomeAddressCountry().GetBuffer()); | 400 | phoneS = QString::fromUcs2( aItem->GetHomeAddressCountry().GetBuffer()); |
401 | phoneS.replace( QRegExp("\\r"), ""); | ||
399 | if ( ! phoneS.isEmpty()) { | 402 | if ( ! phoneS.isEmpty()) { |
400 | addressAdd->setCountry(phoneS ); | 403 | addressAdd->setCountry(phoneS ); |
@@ -402,4 +405,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
402 | } | 405 | } |
403 | phoneS = QString::fromUcs2( aItem->GetHomeAddressState().GetBuffer()); | 406 | phoneS = QString::fromUcs2( aItem->GetHomeAddressState().GetBuffer()); |
407 | phoneS.replace( QRegExp("\\r"), ""); | ||
404 | if ( ! phoneS.isEmpty()) { | 408 | if ( ! phoneS.isEmpty()) { |
405 | addressAdd->setRegion(phoneS ); | 409 | addressAdd->setRegion(phoneS ); |
@@ -407,4 +411,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
407 | } | 411 | } |
408 | phoneS = QString::fromUcs2( aItem->GetHomeAddressCity().GetBuffer()); | 412 | phoneS = QString::fromUcs2( aItem->GetHomeAddressCity().GetBuffer()); |
413 | phoneS.replace( QRegExp("\\r"), ""); | ||
409 | if ( ! phoneS.isEmpty()) { | 414 | if ( ! phoneS.isEmpty()) { |
410 | addressAdd->setLocality(phoneS ); | 415 | addressAdd->setLocality(phoneS ); |
@@ -412,4 +417,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
412 | } | 417 | } |
413 | phoneS = QString::fromUcs2( aItem->GetHomeAddressPostalCode().GetBuffer()); | 418 | phoneS = QString::fromUcs2( aItem->GetHomeAddressPostalCode().GetBuffer()); |
419 | phoneS.replace( QRegExp("\\r"), ""); | ||
414 | if ( ! phoneS.isEmpty()) { | 420 | if ( ! phoneS.isEmpty()) { |
415 | addressAdd->setPostalCode(phoneS ); | 421 | addressAdd->setPostalCode(phoneS ); |
@@ -417,4 +423,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
417 | } | 423 | } |
418 | phoneS = QString::fromUcs2( aItem->GetHomeAddressPostOfficeBox().GetBuffer()); | 424 | phoneS = QString::fromUcs2( aItem->GetHomeAddressPostOfficeBox().GetBuffer()); |
425 | phoneS.replace( QRegExp("\\r"), ""); | ||
419 | if ( ! phoneS.isEmpty()) { | 426 | if ( ! phoneS.isEmpty()) { |
420 | addressAdd->setPostOfficeBox(phoneS ); | 427 | addressAdd->setPostOfficeBox(phoneS ); |
@@ -422,4 +429,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
422 | } | 429 | } |
423 | phoneS = QString::fromUcs2( aItem->GetHomeAddressStreet().GetBuffer()); | 430 | phoneS = QString::fromUcs2( aItem->GetHomeAddressStreet().GetBuffer()); |
431 | phoneS.replace( QRegExp("\\r"), ""); | ||
424 | if ( ! phoneS.isEmpty()) { | 432 | if ( ! phoneS.isEmpty()) { |
425 | addressAdd->setStreet(phoneS ); | 433 | addressAdd->setStreet(phoneS ); |
@@ -427,4 +435,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
427 | } | 435 | } |
428 | phoneS = QString::fromUcs2( aItem->GetHomeAddress().GetBuffer()); | 436 | phoneS = QString::fromUcs2( aItem->GetHomeAddress().GetBuffer()); |
437 | phoneS.replace( QRegExp("\\r"), ""); | ||
429 | if ( ! phoneS.isEmpty()) { | 438 | if ( ! phoneS.isEmpty()) { |
430 | // redundant !addressAdd->setExtended(phoneS ); | 439 | // redundant !addressAdd->setExtended(phoneS ); |
@@ -440,4 +449,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
440 | insert = false; | 449 | insert = false; |
441 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressCountry().GetBuffer()); | 450 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressCountry().GetBuffer()); |
451 | phoneS.replace( QRegExp("\\r"), ""); | ||
442 | if ( ! phoneS.isEmpty()) { | 452 | if ( ! phoneS.isEmpty()) { |
443 | addressAdd->setCountry(phoneS ); | 453 | addressAdd->setCountry(phoneS ); |
@@ -445,4 +455,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
445 | } | 455 | } |
446 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressState().GetBuffer()); | 456 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressState().GetBuffer()); |
457 | phoneS.replace( QRegExp("\\r"), ""); | ||
447 | if ( ! phoneS.isEmpty()) { | 458 | if ( ! phoneS.isEmpty()) { |
448 | addressAdd->setRegion(phoneS ); | 459 | addressAdd->setRegion(phoneS ); |
@@ -450,4 +461,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
450 | } | 461 | } |
451 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressCity().GetBuffer()); | 462 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressCity().GetBuffer()); |
463 | phoneS.replace( QRegExp("\\r"), ""); | ||
452 | if ( ! phoneS.isEmpty()) { | 464 | if ( ! phoneS.isEmpty()) { |
453 | addressAdd->setLocality(phoneS ); | 465 | addressAdd->setLocality(phoneS ); |
@@ -455,4 +467,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
455 | } | 467 | } |
456 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressPostalCode().GetBuffer()); | 468 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressPostalCode().GetBuffer()); |
469 | phoneS.replace( QRegExp("\\r"), ""); | ||
457 | if ( ! phoneS.isEmpty()) { | 470 | if ( ! phoneS.isEmpty()) { |
458 | addressAdd->setPostalCode(phoneS ); | 471 | addressAdd->setPostalCode(phoneS ); |
@@ -460,4 +473,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
460 | } | 473 | } |
461 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressPostOfficeBox().GetBuffer()); | 474 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressPostOfficeBox().GetBuffer()); |
475 | phoneS.replace( QRegExp("\\r"), ""); | ||
462 | if ( ! phoneS.isEmpty()) { | 476 | if ( ! phoneS.isEmpty()) { |
463 | addressAdd->setPostOfficeBox(phoneS ); | 477 | addressAdd->setPostOfficeBox(phoneS ); |
@@ -465,4 +479,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
465 | } | 479 | } |
466 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressStreet().GetBuffer()); | 480 | phoneS = QString::fromUcs2( aItem->GetBusinessAddressStreet().GetBuffer()); |
481 | phoneS.replace( QRegExp("\\r"), ""); | ||
467 | if ( ! phoneS.isEmpty()) { | 482 | if ( ! phoneS.isEmpty()) { |
468 | addressAdd->setStreet(phoneS ); | 483 | addressAdd->setStreet(phoneS ); |
@@ -470,4 +485,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
470 | } | 485 | } |
471 | phoneS = QString::fromUcs2( aItem->GetBusinessAddress().GetBuffer()); | 486 | phoneS = QString::fromUcs2( aItem->GetBusinessAddress().GetBuffer()); |
487 | phoneS.replace( QRegExp("\\r"), ""); | ||
472 | if ( ! phoneS.isEmpty()) { | 488 | if ( ! phoneS.isEmpty()) { |
473 | // redundant !addressAdd->setExtended(phoneS ); | 489 | // redundant !addressAdd->setExtended(phoneS ); |
@@ -483,4 +499,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
483 | insert = false; | 499 | insert = false; |
484 | phoneS = QString::fromUcs2( aItem->GetOtherAddressCountry().GetBuffer()); | 500 | phoneS = QString::fromUcs2( aItem->GetOtherAddressCountry().GetBuffer()); |
501 | phoneS.replace( QRegExp("\\r"), ""); | ||
485 | if ( ! phoneS.isEmpty()) { | 502 | if ( ! phoneS.isEmpty()) { |
486 | addressAdd->setCountry(phoneS ); | 503 | addressAdd->setCountry(phoneS ); |
@@ -488,4 +505,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
488 | } | 505 | } |
489 | phoneS = QString::fromUcs2( aItem->GetOtherAddressState().GetBuffer()); | 506 | phoneS = QString::fromUcs2( aItem->GetOtherAddressState().GetBuffer()); |
507 | phoneS.replace( QRegExp("\\r"), ""); | ||
490 | if ( ! phoneS.isEmpty()) { | 508 | if ( ! phoneS.isEmpty()) { |
491 | addressAdd->setRegion(phoneS ); | 509 | addressAdd->setRegion(phoneS ); |
@@ -493,4 +511,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
493 | } | 511 | } |
494 | phoneS = QString::fromUcs2( aItem->GetOtherAddressCity().GetBuffer()); | 512 | phoneS = QString::fromUcs2( aItem->GetOtherAddressCity().GetBuffer()); |
513 | phoneS.replace( QRegExp("\\r"), ""); | ||
495 | if ( ! phoneS.isEmpty()) { | 514 | if ( ! phoneS.isEmpty()) { |
496 | addressAdd->setLocality(phoneS ); | 515 | addressAdd->setLocality(phoneS ); |
@@ -498,4 +517,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
498 | } | 517 | } |
499 | phoneS = QString::fromUcs2( aItem->GetOtherAddressPostalCode().GetBuffer()); | 518 | phoneS = QString::fromUcs2( aItem->GetOtherAddressPostalCode().GetBuffer()); |
519 | phoneS.replace( QRegExp("\\r"), ""); | ||
500 | if ( ! phoneS.isEmpty()) { | 520 | if ( ! phoneS.isEmpty()) { |
501 | addressAdd->setPostalCode(phoneS ); | 521 | addressAdd->setPostalCode(phoneS ); |
@@ -503,4 +523,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
503 | } | 523 | } |
504 | phoneS = QString::fromUcs2( aItem->GetOtherAddressPostOfficeBox().GetBuffer()); | 524 | phoneS = QString::fromUcs2( aItem->GetOtherAddressPostOfficeBox().GetBuffer()); |
525 | phoneS.replace( QRegExp("\\r"), ""); | ||
505 | if ( ! phoneS.isEmpty()) { | 526 | if ( ! phoneS.isEmpty()) { |
506 | addressAdd->setPostOfficeBox(phoneS ); | 527 | addressAdd->setPostOfficeBox(phoneS ); |
@@ -508,4 +529,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
508 | } | 529 | } |
509 | phoneS = QString::fromUcs2( aItem->GetOtherAddressStreet().GetBuffer()); | 530 | phoneS = QString::fromUcs2( aItem->GetOtherAddressStreet().GetBuffer()); |
531 | phoneS.replace( QRegExp("\\r"), ""); | ||
510 | if ( ! phoneS.isEmpty()) { | 532 | if ( ! phoneS.isEmpty()) { |
511 | addressAdd->setStreet(phoneS ); | 533 | addressAdd->setStreet(phoneS ); |
@@ -525,4 +547,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
525 | insert = false; | 547 | insert = false; |
526 | phoneS = QString::fromUcs2( aItem->GetMailingAddressCountry().GetBuffer()); | 548 | phoneS = QString::fromUcs2( aItem->GetMailingAddressCountry().GetBuffer()); |
549 | phoneS.replace( QRegExp("\\r"), ""); | ||
527 | if ( ! phoneS.isEmpty()) { | 550 | if ( ! phoneS.isEmpty()) { |
528 | addressAdd->setCountry(phoneS ); | 551 | addressAdd->setCountry(phoneS ); |
@@ -530,4 +553,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
530 | } | 553 | } |
531 | phoneS = QString::fromUcs2( aItem->GetMailingAddressState().GetBuffer()); | 554 | phoneS = QString::fromUcs2( aItem->GetMailingAddressState().GetBuffer()); |
555 | phoneS.replace( QRegExp("\\r"), ""); | ||
532 | if ( ! phoneS.isEmpty()) { | 556 | if ( ! phoneS.isEmpty()) { |
533 | addressAdd->setRegion(phoneS ); | 557 | addressAdd->setRegion(phoneS ); |
@@ -535,4 +559,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
535 | } | 559 | } |
536 | phoneS = QString::fromUcs2( aItem->GetMailingAddressCity().GetBuffer()); | 560 | phoneS = QString::fromUcs2( aItem->GetMailingAddressCity().GetBuffer()); |
561 | phoneS.replace( QRegExp("\\r"), ""); | ||
537 | if ( ! phoneS.isEmpty()) { | 562 | if ( ! phoneS.isEmpty()) { |
538 | addressAdd->setLocality(phoneS ); | 563 | addressAdd->setLocality(phoneS ); |
@@ -540,4 +565,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
540 | } | 565 | } |
541 | phoneS = QString::fromUcs2( aItem->GetMailingAddressPostalCode().GetBuffer()); | 566 | phoneS = QString::fromUcs2( aItem->GetMailingAddressPostalCode().GetBuffer()); |
567 | phoneS.replace( QRegExp("\\r"), ""); | ||
542 | if ( ! phoneS.isEmpty()) { | 568 | if ( ! phoneS.isEmpty()) { |
543 | addressAdd->setPostalCode(phoneS ); | 569 | addressAdd->setPostalCode(phoneS ); |
@@ -545,4 +571,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
545 | } | 571 | } |
546 | phoneS = QString::fromUcs2( aItem->GetMailingAddressPostOfficeBox().GetBuffer()); | 572 | phoneS = QString::fromUcs2( aItem->GetMailingAddressPostOfficeBox().GetBuffer()); |
573 | phoneS.replace( QRegExp("\\r"), ""); | ||
547 | if ( ! phoneS.isEmpty()) { | 574 | if ( ! phoneS.isEmpty()) { |
548 | addressAdd->setPostOfficeBox(phoneS ); | 575 | addressAdd->setPostOfficeBox(phoneS ); |
@@ -550,4 +577,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
550 | } | 577 | } |
551 | phoneS = QString::fromUcs2( aItem->GetMailingAddressStreet().GetBuffer()); | 578 | phoneS = QString::fromUcs2( aItem->GetMailingAddressStreet().GetBuffer()); |
579 | phoneS.replace( QRegExp("\\r"), ""); | ||
552 | if ( ! phoneS.isEmpty()) { | 580 | if ( ! phoneS.isEmpty()) { |
553 | addressAdd->setStreet(phoneS ); | 581 | addressAdd->setStreet(phoneS ); |
@@ -555,4 +583,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
555 | } | 583 | } |
556 | phoneS = QString::fromUcs2( aItem->GetMailingAddress().GetBuffer()); | 584 | phoneS = QString::fromUcs2( aItem->GetMailingAddress().GetBuffer()); |
585 | phoneS.replace( QRegExp("\\r"), ""); | ||
557 | if ( ! phoneS.isEmpty()) { | 586 | if ( ! phoneS.isEmpty()) { |
558 | // redundant ! addressAdd->setExtended(phoneS ); | 587 | // redundant ! addressAdd->setExtended(phoneS ); |
@@ -592,4 +621,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
592 | //GetUserProperties(); | 621 | //GetUserProperties(); |
593 | tempS = QString::fromUcs2(aItem->GetInternetFreeBusyAddress().GetBuffer()); | 622 | tempS = QString::fromUcs2(aItem->GetInternetFreeBusyAddress().GetBuffer()); |
623 | phoneS.replace( QRegExp("\\r"), ""); | ||
594 | if ( !tempS.isEmpty() ) | 624 | if ( !tempS.isEmpty() ) |
595 | addressee.insertCustom( "KADDRESSBOOK", "X-FreeBusyUrl", tempS ); | 625 | addressee.insertCustom( "KADDRESSBOOK", "X-FreeBusyUrl", tempS ); |
@@ -612,4 +642,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
612 | } | 642 | } |
613 | tempAdd = QString::fromUcs2(aItem->GetHobby().GetBuffer()); | 643 | tempAdd = QString::fromUcs2(aItem->GetHobby().GetBuffer()); |
644 | phoneS.replace( QRegExp("\\r"), ""); | ||
614 | if ( ! tempAdd.isEmpty() ) { | 645 | if ( ! tempAdd.isEmpty() ) { |
615 | additionalInfo += i18n("\nHobby: "); | 646 | additionalInfo += i18n("\nHobby: "); |
@@ -617,4 +648,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
617 | } | 648 | } |
618 | tempAdd =QString::fromUcs2(aItem->GetPersonalHomePage().GetBuffer()); | 649 | tempAdd =QString::fromUcs2(aItem->GetPersonalHomePage().GetBuffer()); |
650 | phoneS.replace( QRegExp("\\r"), ""); | ||
619 | if ( ! tempAdd.isEmpty() ) { | 651 | if ( ! tempAdd.isEmpty() ) { |
620 | additionalInfo += i18n("\nHomepage: "); | 652 | additionalInfo += i18n("\nHomepage: "); |
@@ -622,4 +654,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
622 | } | 654 | } |
623 | tempAdd = QString::fromUcs2(aItem->GetBillingInformation().GetBuffer()); | 655 | tempAdd = QString::fromUcs2(aItem->GetBillingInformation().GetBuffer()); |
656 | phoneS.replace( QRegExp("\\r"), ""); | ||
624 | if ( ! tempAdd.isEmpty() ) { | 657 | if ( ! tempAdd.isEmpty() ) { |
625 | additionalInfo += i18n("\nBilling information: "); | 658 | additionalInfo += i18n("\nBilling information: "); |
@@ -627,4 +660,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
627 | } | 660 | } |
628 | tempAdd = QString::fromUcs2(aItem->GetCustomerID().GetBuffer()); | 661 | tempAdd = QString::fromUcs2(aItem->GetCustomerID().GetBuffer()); |
662 | phoneS.replace( QRegExp("\\r"), ""); | ||
629 | if ( ! tempAdd.isEmpty() ) { | 663 | if ( ! tempAdd.isEmpty() ) { |
630 | additionalInfo += i18n("\nCustomer ID: "); | 664 | additionalInfo += i18n("\nCustomer ID: "); |
@@ -632,4 +666,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
632 | } | 666 | } |
633 | tempAdd = QString::fromUcs2(aItem->GetUser1().GetBuffer()); | 667 | tempAdd = QString::fromUcs2(aItem->GetUser1().GetBuffer()); |
668 | phoneS.replace( QRegExp("\\r"), ""); | ||
634 | if ( ! tempAdd.isEmpty() ) { | 669 | if ( ! tempAdd.isEmpty() ) { |
635 | additionalInfo += i18n("\nUser1: "); | 670 | additionalInfo += i18n("\nUser1: "); |
@@ -637,4 +672,5 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
637 | } | 672 | } |
638 | tempAdd = QString::fromUcs2(aItem->GetUser2().GetBuffer()); | 673 | tempAdd = QString::fromUcs2(aItem->GetUser2().GetBuffer()); |
674 | phoneS.replace( QRegExp("\\r"), ""); | ||
639 | if ( ! tempAdd.isEmpty() ) { | 675 | if ( ! tempAdd.isEmpty() ) { |
640 | additionalInfo += i18n("\nUser2: "); | 676 | additionalInfo += i18n("\nUser2: "); |
@@ -642,9 +678,11 @@ void KAImportOLdialog::ol2kapiContact( _ContactItem * aItem ) | |||
642 | } | 678 | } |
643 | tempAdd = QString::fromUcs2(aItem->GetUser3().GetBuffer()); | 679 | tempAdd = QString::fromUcs2(aItem->GetUser3().GetBuffer()); |
680 | phoneS.replace( QRegExp("\\r"), ""); | ||
644 | if ( ! tempAdd.isEmpty() ) { | 681 | if ( ! tempAdd.isEmpty() ) { |
645 | additionalInfo += i18n("\nUser3: "); | 682 | additionalInfo += i18n("\nUser3: "); |
646 | additionalInfo += tempAdd;; | 683 | additionalInfo += tempAdd;; |
647 | } | 684 | } |
648 | tempAdd = QString::fromUcs2(aItem->GetUser4().GetBuffer()); | 685 | tempAdd = QString::fromUcs2(aItem->GetUser4().GetBuffer()); |
686 | phoneS.replace( QRegExp("\\r"), ""); | ||
649 | if ( ! tempAdd.isEmpty() ) { | 687 | if ( ! tempAdd.isEmpty() ) { |
650 | additionalInfo += i18n("\nUser4: "); | 688 | additionalInfo += i18n("\nUser4: "); |
diff --git a/korganizer/koimportoldialog.cpp b/korganizer/koimportoldialog.cpp index 0a3c2d5..c0bde0d 100644 --- a/korganizer/koimportoldialog.cpp +++ b/korganizer/koimportoldialog.cpp | |||
@@ -32,4 +32,5 @@ | |||
32 | #include <qapplication.h> | 32 | #include <qapplication.h> |
33 | #include <qhbox.h> | 33 | #include <qhbox.h> |
34 | #include <qregexp.h> | ||
34 | #include <qheader.h> | 35 | #include <qheader.h> |
35 | #include <qdatetime.h> | 36 | #include <qdatetime.h> |
@@ -251,5 +252,5 @@ void KOImportOLdialog::ol2kopiCalendar( _AppointmentItem * aItem, bool computeRe | |||
251 | event->setSummary( QString::fromUcs2( aItem->GetSubject().GetBuffer()) ); | 252 | event->setSummary( QString::fromUcs2( aItem->GetSubject().GetBuffer()) ); |
252 | event->setLocation( QString::fromUcs2( aItem->GetLocation().GetBuffer()) ); | 253 | event->setLocation( QString::fromUcs2( aItem->GetLocation().GetBuffer()) ); |
253 | event->setDescription( QString::fromUcs2( aItem->GetBody().GetBuffer()) ); | 254 | event->setDescription( QString::fromUcs2( aItem->GetBody().GetBuffer()).replace( QRegExp("\\r"), "") ); |
254 | QString cat = QString::fromUcs2( aItem->GetCategories().GetBuffer()); | 255 | QString cat = QString::fromUcs2( aItem->GetCategories().GetBuffer()); |
255 | event->setCategories( QStringList::split( ";", cat )); | 256 | event->setCategories( QStringList::split( ";", cat )); |
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index 9e215b9..63484d6 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp | |||
@@ -289,6 +289,8 @@ MainWindow::~MainWindow() | |||
289 | delete mCalendar; | 289 | delete mCalendar; |
290 | delete mSyncManager; | 290 | delete mSyncManager; |
291 | #ifndef DESKTOP_VERSION | ||
291 | if ( infrared ) | 292 | if ( infrared ) |
292 | delete infrared; | 293 | delete infrared; |
294 | #endif | ||
293 | 295 | ||
294 | 296 | ||
@@ -297,4 +299,5 @@ MainWindow::~MainWindow() | |||
297 | void MainWindow::disableBR(bool b) | 299 | void MainWindow::disableBR(bool b) |
298 | { | 300 | { |
301 | #ifndef DESKTOP_VERSION | ||
299 | if ( b ) { | 302 | if ( b ) { |
300 | if ( infrared ) { | 303 | if ( infrared ) { |
@@ -302,10 +305,13 @@ void MainWindow::disableBR(bool b) | |||
302 | mBRdisabled = true; | 305 | mBRdisabled = true; |
303 | } | 306 | } |
307 | mBRdisabled = true; | ||
304 | } else { | 308 | } else { |
305 | if ( mBRdisabled ) { | 309 | if ( mBRdisabled ) { |
306 | mBRdisabled = false; | 310 | mBRdisabled = false; |
307 | toggleBeamReceive(); | 311 | //makes no sense,because other cal ap is probably running |
312 | // toggleBeamReceive(); | ||
308 | } | 313 | } |
309 | } | 314 | } |
315 | #endif | ||
310 | 316 | ||
311 | } | 317 | } |