diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 20:16:47 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 20:16:47 +0000 |
commit | 495d08bc2db58ee7fc4ea55a7158f2f61b82fc56 (patch) | |
tree | daabcb652c07b9a17cad88ca50b63a2d91ead4a3 /nsplugins/sdk/prtypes.h | |
parent | 50001f1757f97510e80cb1990e2f2d5b00144c2a (diff) | |
download | tdebase-495d08bc2db58ee7fc4ea55a7158f2f61b82fc56.tar.gz tdebase-495d08bc2db58ee7fc4ea55a7158f2f61b82fc56.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1211357 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'nsplugins/sdk/prtypes.h')
-rw-r--r-- | nsplugins/sdk/prtypes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nsplugins/sdk/prtypes.h b/nsplugins/sdk/prtypes.h index b68361082..28944cd54 100644 --- a/nsplugins/sdk/prtypes.h +++ b/nsplugins/sdk/prtypes.h @@ -26,7 +26,7 @@ * version of this file only under the terms of the GPL and not to * allow others to use your version of this file under the MPL, * indicate your decision by deleting the provisions above and - * replace them with the notice and other provisions required by + * tqreplace them with the notice and other provisions required by * the GPL. If you do not delete the provisions above, a recipient * may use your version of this file under either the MPL or the * GPL. @@ -231,7 +231,7 @@ ** MACROS: PR_BIT ** PR_BITMASK ** DESCRIPTION: -** Bit masking macros. XXX n must be <= 31 to be portable +** Bit tqmasking macros. XXX n must be <= 31 to be portable ***********************************************************************/ #define PR_BIT(n) ((PRUint32)1 << (n)) #define PR_BITMASK(n) (PR_BIT(n) - 1) @@ -459,10 +459,10 @@ typedef PRIntn PRBool; typedef PRUint8 PRPackedBool; /* -** Status code used by some routines that have a single point of failure or +** tqStatus code used by some routines that have a single point of failure or ** special status return. */ -typedef enum { PR_FAILURE = -1, PR_SUCCESS = 0 } PRStatus; +typedef enum { PR_FAILURE = -1, PR_SUCCESS = 0 } PRtqStatus; #ifdef MOZ_UNICODE /* |