-rw-r--r-- | kabc/addressbook.cpp | 2 | ||||
-rw-r--r-- | kaddressbook/kabcore.cpp | 4 | ||||
-rw-r--r-- | korganizer/mainwindow.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp index df0fba4..d101589 100644 --- a/kabc/addressbook.cpp +++ b/kabc/addressbook.cpp @@ -576,7 +576,7 @@ void AddressBook::removeSyncInfo( QString syncProfile) } } else { Addressee lse; - lse = mAddressBook->findByUid( "last-syncAddressee-"+ syncProfile ); + lse = findByUid( "last-syncAddressee-"+ syncProfile ); if ( ! lse.isEmpty() ) removeAddressee( lse ); } diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index e56e46a..2f00a09 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp @@ -313,11 +313,11 @@ KABCore::KABCore( KXMLGUIClient *client, bool readWrite, QWidget *parent, const mEditorDialog = 0; createAddresseeEditorDialog( this ); setModified( false ); - mBRdisabled = 0; + mBRdisabled = false; #ifndef DESKTOP_VERSION infrared = 0; #endif - toggleBeamReceive( ); + //toggleBeamReceive( ); } KABCore::~KABCore() diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index dc2026b..fc2d59b 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp @@ -279,7 +279,7 @@ MainWindow::MainWindow( QWidget *parent, const char *name, QString msg) : #endif mBRdisabled = false; - toggleBeamReceive(); + //toggleBeamReceive(); } MainWindow::~MainWindow() { |