diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 23:22:31 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 23:22:31 -0600 |
commit | bd11bce76f195adf4f3806cef8cf2e0737c99ff2 (patch) | |
tree | e3c1714d74f67cc51cd04162cd4afa927dd7f7d4 /kgpg/listkeys.cpp | |
parent | 2d7591be424ae10d974d01e0e2f781d19ef07cd6 (diff) | |
download | tdeutils-bd11bce76f195adf4f3806cef8cf2e0737c99ff2.tar.gz tdeutils-bd11bce76f195adf4f3806cef8cf2e0737c99ff2.zip |
Rename many classes and header files to avoid conflicts with KDE4
Diffstat (limited to 'kgpg/listkeys.cpp')
-rw-r--r-- | kgpg/listkeys.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kgpg/listkeys.cpp b/kgpg/listkeys.cpp index acfe42e..5804280 100644 --- a/kgpg/listkeys.cpp +++ b/kgpg/listkeys.cpp @@ -41,7 +41,7 @@ #include <kprocess.h> #include <kprocio.h> #include <tqwidget.h> -#include <kaction.h> +#include <tdeaction.h> #include <tqcheckbox.h> #include <tqlabel.h> #include <tqtoolbutton.h> @@ -52,8 +52,8 @@ #include <tdeio/netaccess.h> #include <kurl.h> #include <tdefiledialog.h> -#include <kshortcut.h> -#include <kstdaccel.h> +#include <tdeshortcut.h> +#include <tdestdaccel.h> #include <klocale.h> #include <ktip.h> #include <krun.h> @@ -1559,15 +1559,15 @@ void listKeys::slotexport() } } else { - TQStringList klist; + TQStringList tdelist; for ( uint i = 0; i < exportList.count(); ++i ) if ( exportList.at(i) ) - klist.append(exportList.at(i)->text(6).stripWhiteSpace()); + tdelist.append(exportList.at(i)->text(6).stripWhiteSpace()); KgpgInterface *kexp=new KgpgInterface(); - TQString result=kexp->getKey(klist,exportAttr); + TQString result=kexp->getKey(tdelist,exportAttr); if (page->checkClipboard->isChecked()) slotProcessExportClip(result); //connect(kexp,TQT_SIGNAL(publicKeyString(TQString)),TQT_TQOBJECT(this),TQT_SLOT(slotProcessExportClip(TQString))); |