From 47bd2528db547822b6df6e287e02b6e2ebf7acd8 Mon Sep 17 00:00:00 2001 From: zautrix Date: Fri, 06 Aug 2004 20:22:49 +0000 Subject: Added licence to kapi --- diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 25891a0..2494aa2 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp @@ -1635,7 +1635,9 @@ void KABCore::initActions() SLOT( importFromOL() ), actionCollection(), "import_OL" ); #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, this, SLOT( createAboutData() ), actionCollection(), "kaddressbook_about_data" ); @@ -1759,7 +1761,7 @@ void KABCore::addActionsManually() mActionCategories->plug( settingsMenu ); mActionAboutKAddressbook->plug( helpMenu ); - + mActionLicence->plug( helpMenu ); if (QApplication::desktop()->width() > 320 ) { @@ -1792,6 +1794,10 @@ void KABCore::addActionsManually() #endif //KAB_EMBEDDED } +void KABCore::showLicence() +{ + KApplication::showLicence(); +} void KABCore::removeVoice() { if ( KMessageBox::questionYesNo( this, i18n("After importing, phone numbers\nmay have two or more types.\n(E.g. work+voice)\nThese numbers are shown as \"other\".\nClick Yes to remove the voice type\nfrom numbers with more than one type.\n\nRemove voice type?") ) == KMessageBox::No ) diff --git a/kaddressbook/kabcore.h b/kaddressbook/kabcore.h index be39148..6bbdfd4 100644 --- a/kaddressbook/kabcore.h +++ b/kaddressbook/kabcore.h @@ -142,6 +142,7 @@ class KABCore : public QWidget #endif //KAB_EMBEDDED void statusMessage(QString, int time = 0 ); + void showLicence(); /** Is called whenever a contact is selected in the view. */ @@ -407,6 +408,7 @@ class KABCore : public QWidget KAction *mActionWhoAmI; KAction *mActionCategories; KAction *mActionAboutKAddressbook; + KAction *mActionLicence; KAction *mActionDeleteView; -- cgit v0.9.0.2