summaryrefslogtreecommitdiffstats
path: root/libkpgp/kpgp.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
commit67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch)
tree5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /libkpgp/kpgp.h
parent2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff)
downloadtdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz
tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip
Initial conversion of kdepim to TQt
This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkpgp/kpgp.h')
-rw-r--r--libkpgp/kpgp.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/libkpgp/kpgp.h b/libkpgp/kpgp.h
index ec937015..da6c02e1 100644
--- a/libkpgp/kpgp.h
+++ b/libkpgp/kpgp.h
@@ -258,7 +258,7 @@ public:
corresponding key is selected.
*/
KeyID selectSecretKey( const TQString& title,
- const TQString& text = TQString::null,
+ const TQString& text = TQString(),
const KeyID& keyId = KeyID() );
/** Shows a key selection dialog with all public keys and the given title
@@ -268,9 +268,9 @@ public:
<em>mode</em> specifies which keys can be selected.
*/
KeyID selectPublicKey( const TQString& title,
- const TQString& text = TQString::null,
+ const TQString& text = TQString(),
const KeyID& oldKeyId = KeyID(),
- const TQString& address = TQString::null,
+ const TQString& address = TQString(),
const unsigned int allowedKeys = AllKeys );
/** Shows a key selection dialog with all public keys and the given title
@@ -280,9 +280,9 @@ public:
<em>mode</em> specifies which keys can be selected.
*/
KeyIDList selectPublicKeys( const TQString& title,
- const TQString& text = TQString::null,
+ const TQString& text = TQString(),
const KeyIDList& oldKeyIds = KeyIDList(),
- const TQString& address = TQString::null,
+ const TQString& address = TQString(),
const unsigned int allowedKeys = AllKeys );
// FIXME: key management
@@ -308,7 +308,7 @@ public:
/** Parses the given message and splits it into OpenPGP blocks and
Non-OpenPGP blocks.
- Returns TRUE if the message tqcontains at least one OpenPGP block and
+ Returns TRUE if the message contains at least one OpenPGP block and
FALSE otherwise.
The format is then:
<pre>
@@ -356,7 +356,7 @@ private:
*/
KeyID selectKey( const KeyList& keys,
const TQString& title,
- const TQString& text = TQString::null,
+ const TQString& text = TQString(),
const KeyID& keyId = KeyID(),
const unsigned int allowedKeys = AllKeys );
@@ -364,7 +364,7 @@ private:
*/
KeyIDList selectKeys( const KeyList& keys,
const TQString& title,
- const TQString& text = TQString::null,
+ const TQString& text = TQString(),
const KeyIDList& keyIds = KeyIDList(),
const unsigned int allowedKeys = AllKeys );
@@ -375,7 +375,7 @@ private:
KeyID selectKey( bool& rememberChoice,
const KeyList& keys,
const TQString& title,
- const TQString& text = TQString::null,
+ const TQString& text = TQString(),
const KeyID& keyId = KeyID(),
const unsigned int allowedKeys = AllKeys );
@@ -386,7 +386,7 @@ private:
KeyIDList selectKeys( bool& rememberChoice,
const KeyList& keys,
const TQString& title,
- const TQString& text = TQString::null,
+ const TQString& text = TQString(),
const KeyIDList& keyIds = KeyIDList(),
const unsigned int allowedKeys = AllKeys );