summaryrefslogtreecommitdiffstats
path: root/kword/mailmerge/kabc/KWMailMergeKABC.h
diff options
context:
space:
mode:
Diffstat (limited to 'kword/mailmerge/kabc/KWMailMergeKABC.h')
-rw-r--r--kword/mailmerge/kabc/KWMailMergeKABC.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kword/mailmerge/kabc/KWMailMergeKABC.h b/kword/mailmerge/kabc/KWMailMergeKABC.h
index b5f0dfc3..7a67a475 100644
--- a/kword/mailmerge/kabc/KWMailMergeKABC.h
+++ b/kword/mailmerge/kabc/KWMailMergeKABC.h
@@ -79,20 +79,20 @@ protected:
friend class KWMailMergeKABCConfig;
/**
- Adds an entry from KABC::StdAddressBook::self()
+ Adds an entry from TDEABC::StdAddressBook::self()
to the mail merge list.
- To be called by KWMailMergeKABC::load() and
+ To be called by KWMailMergeTDEABC::load() and
KWMailMergeKABCConfig::acceptSelection() only.
- @param uid The entry's KABC::Addressee::uid().
+ @param uid The entry's TDEABC::Addressee::uid().
*/
void addEntry( const TQString &uid );
/**
Adds a distribution list to the mail merge list.
- To be called by KWMailMergeKABC::load() and
+ To be called by KWMailMergeTDEABC::load() and
KWMailMergeKABCConfig::acceptSelection() only.
@param id The DistributionList::name().
@@ -112,7 +112,7 @@ protected:
virtual TQStringList lists() const;
/**
- @return The KABC::Addressee::uid() of all individually selected
+ @return The TDEABC::Addressee::uid() of all individually selected
entries in mail merge list.
To be called by KWMailMergeKABCConfig::initSelectedAddressees()
@@ -121,14 +121,14 @@ protected:
private:
/**
- The KABC::StdAddressBook::self().
+ The TDEABC::StdAddressBook::self().
*/
- KABC::AddressBook* _addressBook;
+ TDEABC::AddressBook* _addressBook;
/**
Just an Iterator.
*/
- mutable KABC::AddressBook::ConstIterator _iterator;
+ mutable TDEABC::AddressBook::ConstIterator _iterator;
/**
Just an Iterator.
@@ -137,7 +137,7 @@ private:
/**
The "real" mail merge list. A list of TQStrings. Each represents
- the KABC::Addressee::uid() of a KAdressbook entry.
+ the TDEABC::Addressee::uid() of a KAdressbook entry.
There is no UID twice in this list.
Needed because selected contacts may appear in a selected
@@ -146,13 +146,13 @@ private:
TQStringList _exclusiveUIDs;
/**
- This list contains all the KABC::Addressee::uid() selected
+ This list contains all the TDEABC::Addressee::uid() selected
individually with the KWMailMergeKABCConfig dialog.
*/
TQStringList _individualUIDs;
/**
- This list contains all the KABC::Addressee::uid() from the distribution
+ This list contains all the TDEABC::Addressee::uid() from the distribution
lists selected with the KWMailMergeKABCConfig dialog.
*/
TQStringList _listUIDs;
@@ -165,7 +165,7 @@ private:
/**
- Appends all KABC::Addressee::uid() of a distribution list to _listUIDs
+ Appends all TDEABC::Addressee::uid() of a distribution list to _listUIDs
and updates the mail merge list.
To be used by KWMailMergeKABCConfig::addList( const TQString &id )