summaryrefslogtreecommitdiffstats
path: root/libkpgp/kpgpbaseG.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkpgp/kpgpbaseG.cpp')
-rw-r--r--libkpgp/kpgpbaseG.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libkpgp/kpgpbaseG.cpp b/libkpgp/kpgpbaseG.cpp
index 2e5c916f..c4aa0ac1 100644
--- a/libkpgp/kpgpbaseG.cpp
+++ b/libkpgp/kpgpbaseG.cpp
@@ -24,7 +24,7 @@
#include "kpgp.h"
#include <tdelocale.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <kdebug.h>
#include <tqtextcodec.h>
@@ -128,7 +128,7 @@ BaseG::encsign( Block& block, const KeyIDList& recipients,
if(!recipients.isEmpty())
{
int index = 0;
- bool bad = FALSE;
+ bool bad = false;
unsigned int num = 0;
TQCString badkeys = "";
// Examples:
@@ -140,7 +140,7 @@ BaseG::encsign( Block& block, const KeyIDList& recipients,
// (untrusted key, 23456789 is the key Id of the encryption sub key)
while((index = error.find("skipped: ",index)) != -1)
{
- bad = TRUE;
+ bad = true;
index = error.find('\'',index);
int index2 = error.find('\'',index+1);
badkeys += error.mid(index, index2-index+1) + ", ";