author | zautrix <zautrix> | 2005-01-27 17:15:25 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-27 17:15:25 (UTC) |
commit | 1c32caad4bf20d169203d05f9dbcac1d90402969 (patch) (side-by-side diff) | |
tree | 8960a18919924f62cc3483e01b686d26bf359d66 /kaddressbook | |
parent | 5daf7a5bcdd729862de5bbe95ab2c88ed6de2b78 (diff) | |
download | kdepimpi-1c32caad4bf20d169203d05f9dbcac1d90402969.zip kdepimpi-1c32caad4bf20d169203d05f9dbcac1d90402969.tar.gz kdepimpi-1c32caad4bf20d169203d05f9dbcac1d90402969.tar.bz2 |
another fix
-rw-r--r-- | kaddressbook/kabcore.cpp | 8 | ||||
-rw-r--r-- | kaddressbook/kabcore.h | 1 |
2 files changed, 7 insertions, 2 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index e34a7d3..e2e3a66 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp @@ -1414,7 +1414,11 @@ void KABCore::redo() // Refresh the view mViewManager->refreshView(); } - +void KABCore::setJumpButtonBar( bool visible ) +{ + setJumpButtonBarVisible(visible ); + saveSettings(); +} void KABCore::setJumpButtonBarVisible( bool visible ) { if (mMultipleViewsAtOnce) @@ -2004,7 +2008,7 @@ void KABCore::initActions() mActionJumpBar = new KToggleAction( i18n( "Show Jump Bar" ), 0, 0, actionCollection(), "options_show_jump_bar" ); - connect( mActionJumpBar, SIGNAL( toggled( bool ) ), SLOT( setJumpButtonBarVisible( bool ) ) ); + connect( mActionJumpBar, SIGNAL( toggled( bool ) ), SLOT( setJumpButtonBar( bool ) ) ); mActionDetails = new KToggleAction( i18n( "Show Details" ), "listview", 0, actionCollection(), "options_show_details" ); diff --git a/kaddressbook/kabcore.h b/kaddressbook/kabcore.h index 786549a..c185117 100644 --- a/kaddressbook/kabcore.h +++ b/kaddressbook/kabcore.h @@ -366,6 +366,7 @@ class KABCore : public QWidget, public KSyncInterface void toggleBeamReceive( ); void disableBR(bool); void setJumpButtonBarVisible( bool visible ); + void setJumpButtonBar( bool visible ); void setCaptionBack(); void importFromOL(); void extensionModified( const KABC::Addressee::List &list ); |