diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-07 11:09:19 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-07 11:09:19 -0600 |
commit | 696e36a06178f50483432b9a8e806c4a1c530921 (patch) | |
tree | b2c0b4ad792acad4cb75d39038f30687cac45129 /tdecore/kcmdlineargs.cpp | |
parent | 5466d52073af147d100482cbf633087bb9fb631b (diff) | |
download | tdelibs-696e36a06178f50483432b9a8e806c4a1c530921.tar.gz tdelibs-696e36a06178f50483432b9a8e806c4a1c530921.zip |
Rename KAbout to avoid conflicts with KDE4
Diffstat (limited to 'tdecore/kcmdlineargs.cpp')
-rw-r--r-- | tdecore/kcmdlineargs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdecore/kcmdlineargs.cpp b/tdecore/kcmdlineargs.cpp index 9617125a5..a1d3adcf9 100644 --- a/tdecore/kcmdlineargs.cpp +++ b/tdecore/kcmdlineargs.cpp @@ -607,10 +607,10 @@ TDECmdLineArgs::parseAllArgs() } else if ( ::qstrcmp( option, "author") == 0 ) { enable_i18n(); if ( about ) { - const TQValueList<KAboutPerson> authors = about->authors(); + const TQValueList<TDEAboutPerson> authors = about->authors(); if ( !authors.isEmpty() ) { TQString authorlist; - for (TQValueList<KAboutPerson>::ConstIterator it = authors.begin(); it != authors.end(); ++it ) { + for (TQValueList<TDEAboutPerson>::ConstIterator it = authors.begin(); it != authors.end(); ++it ) { TQString email; if ( !(*it).emailAddress().isEmpty() ) email = " <" + (*it).emailAddress() + ">"; |