summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--kaddressbook/extensionmanager.cpp8
-rw-r--r--kaddressbook/extensionmanager.h1
2 files changed, 6 insertions, 3 deletions
diff --git a/kaddressbook/extensionmanager.cpp b/kaddressbook/extensionmanager.cpp
index 9114cdc..98561dc 100644
--- a/kaddressbook/extensionmanager.cpp
+++ b/kaddressbook/extensionmanager.cpp
@@ -115,5 +115,5 @@ void ExtensionManager::setActiveExtension( int id )
#ifndef DESKTOP_VERSION
//US our screen is so small, that we better hide the detailscreen, just in case.
- mCore->setDetailsToState( );
+//US mCore->setDetailsToState( );
#endif //KAB_EMBEDDED
} else if ( id > 0 ) {
@@ -126,5 +126,5 @@ void ExtensionManager::setActiveExtension( int id )
#ifndef DESKTOP_VERSION
//US our screen is so small, that we better hide the detailscreen, just in case.
- mCore->setDetailsVisible( false );
+//US mCore->setDetailsVisible( false );
#endif //KAB_EMBEDDED
show();
@@ -136,8 +136,10 @@ void ExtensionManager::setActiveExtension( int id )
#ifndef DESKTOP_VERSION
//US our screen is so small, that we better hide the detailscreen, just in case.
- mCore->setDetailsToState( );
+//US mCore->setDetailsToState( );
#endif //KAB_EMBEDDED
}
}
+
+ emit changedActiveExtension( id );
}
diff --git a/kaddressbook/extensionmanager.h b/kaddressbook/extensionmanager.h
index 8f64a50..611a037 100644
--- a/kaddressbook/extensionmanager.h
+++ b/kaddressbook/extensionmanager.h
@@ -69,4 +69,5 @@ class ExtensionManager : public QScrollView
signals:
void modified( const KABC::Addressee::List& );
+ void changedActiveExtension( int id );
private slots: