diff options
Diffstat (limited to 'certmanager/certificatewizardimpl.cpp')
-rw-r--r-- | certmanager/certificatewizardimpl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/certmanager/certificatewizardimpl.cpp b/certmanager/certificatewizardimpl.cpp index d220a10af..b0cff6a32 100644 --- a/certmanager/certificatewizardimpl.cpp +++ b/certmanager/certificatewizardimpl.cpp @@ -295,10 +295,10 @@ void CertificateWizardImpl::slotHelpClicked() void CertificateWizardImpl::slotSetValuesFromWhoAmI() { - const KABC::Addressee a = KABC::StdAddressBook::self( true )->whoAmI(); + const TDEABC::Addressee a = TDEABC::StdAddressBook::self( true )->whoAmI(); if ( a.isEmpty() ) return; - const KABC::Address adr = a.address(KABC::Address::Work); + const TDEABC::Address adr = a.address(TDEABC::Address::Work); for ( AttrPairList::const_iterator it = _attrPairList.begin() ; it != _attrPairList.end() ; ++it ) { @@ -369,7 +369,7 @@ void CertificateWizardImpl::createPersonalDataPage() } // enable button only if administrator wants to allow it - if (KABC::StdAddressBook::self( true )->whoAmI().isEmpty() || + if (TDEABC::StdAddressBook::self( true )->whoAmI().isEmpty() || !config.readBoolEntry("ShowSetWhoAmI", true)) insertAddressButton->setEnabled( false ); |