summaryrefslogtreecommitdiffabout
path: root/kaddressbook
Side-by-side diff
Diffstat (limited to 'kaddressbook') (more/less context) (ignore whitespace changes)
-rw-r--r--kaddressbook/kabcore.cpp13
-rw-r--r--kaddressbook/kabcore.h2
2 files changed, 14 insertions, 1 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp
index ce5c755..eba74a6 100644
--- a/kaddressbook/kabcore.cpp
+++ b/kaddressbook/kabcore.cpp
@@ -2099,4 +2099,11 @@ void KABCore::initActions()
this, SLOT( whatsnew() ), actionCollection(),
"wn" );
+
+
+
+ mActionStorageHowto = new KAction( i18n( "Storage HowTo" ), 0,
+ this, SLOT( storagehowto() ), actionCollection(),
+ "storage" );
+
mActionSyncHowto = new KAction( i18n( "Sync HowTo" ), 0,
this, SLOT( synchowto() ), actionCollection(),
@@ -2274,4 +2281,5 @@ void KABCore::addActionsManually()
mActionWN->plug( helpMenu );
+ mActionStorageHowto->plug( helpMenu );
mActionSyncHowto->plug( helpMenu );
mActionKdeSyncHowto->plug( helpMenu );
@@ -2727,5 +2735,8 @@ void KABCore::requestForDetails(const QString& sourceChannel, const QString& ses
}
}
-
+void KABCore::storagehowto()
+{
+ KApplication::showFile( "KDE-Pim/Pi Storage HowTo", "kdepim/storagehowto.txt" );
+}
void KABCore::whatsnew()
{
diff --git a/kaddressbook/kabcore.h b/kaddressbook/kabcore.h
index 4cef73a..80dbf08 100644
--- a/kaddressbook/kabcore.h
+++ b/kaddressbook/kabcore.h
@@ -150,4 +150,5 @@ class KABCore : public QWidget, public KSyncInterface
void whatsnew() ;
void synchowto() ;
+ void storagehowto() ;
void multisynchowto() ;
void kdesynchowto() ;
@@ -473,4 +474,5 @@ class KABCore : public QWidget, public KSyncInterface
KAction *mActionWN;
KAction *mActionSyncHowto;
+ KAction *mActionStorageHowto;
KAction *mActionKdeSyncHowto;
KAction *mActionMultiSyncHowto;