author | zautrix <zautrix> | 2004-08-06 20:22:49 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-08-06 20:22:49 (UTC) |
commit | 47bd2528db547822b6df6e287e02b6e2ebf7acd8 (patch) (side-by-side diff) | |
tree | d05d831afe3c49c55ed89db6a9cb4ce9fc3a6835 /kaddressbook | |
parent | 184e3d096e83f777cce9b919f9f9d56e5960e067 (diff) | |
download | kdepimpi-47bd2528db547822b6df6e287e02b6e2ebf7acd8.zip kdepimpi-47bd2528db547822b6df6e287e02b6e2ebf7acd8.tar.gz kdepimpi-47bd2528db547822b6df6e287e02b6e2ebf7acd8.tar.bz2 |
Added licence to kapi
-rw-r--r-- | kaddressbook/kabcore.cpp | 10 | ||||
-rw-r--r-- | kaddressbook/kabcore.h | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 25891a0..2494aa2 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp @@ -1637,3 +1637,5 @@ void KABCore::initActions() #ifdef KAB_EMBEDDED - + mActionLicence = new KAction( i18n( "Licence" ), "licence", 0, + this, SLOT( showLicence() ), actionCollection(), + "licence_about_data" ); mActionAboutKAddressbook = new KAction( i18n( "&About KAddressBook" ), "kaddressbook2", 0, @@ -1761,3 +1763,3 @@ void KABCore::addActionsManually() mActionAboutKAddressbook->plug( helpMenu ); - + mActionLicence->plug( helpMenu ); @@ -1794,2 +1796,6 @@ void KABCore::addActionsManually() } +void KABCore::showLicence() +{ + KApplication::showLicence(); +} void KABCore::removeVoice() diff --git a/kaddressbook/kabcore.h b/kaddressbook/kabcore.h index be39148..6bbdfd4 100644 --- a/kaddressbook/kabcore.h +++ b/kaddressbook/kabcore.h @@ -144,2 +144,3 @@ class KABCore : public QWidget void statusMessage(QString, int time = 0 ); + void showLicence(); /** @@ -409,2 +410,3 @@ class KABCore : public QWidget KAction *mActionAboutKAddressbook; + KAction *mActionLicence; |