summaryrefslogtreecommitdiffstats
path: root/sip/qtnetwork/qhttp.sip
diff options
context:
space:
mode:
Diffstat (limited to 'sip/qtnetwork/qhttp.sip')
-rw-r--r--sip/qtnetwork/qhttp.sip12
1 files changed, 6 insertions, 6 deletions
diff --git a/sip/qtnetwork/qhttp.sip b/sip/qtnetwork/qhttp.sip
index dfd9381..ba3a251 100644
--- a/sip/qtnetwork/qhttp.sip
+++ b/sip/qtnetwork/qhttp.sip
@@ -24,9 +24,9 @@
%ExportedDoc
<Sect2><Title>TQHttp (TQt v3+)</Title>
<FuncSynopsis>
- <FuncDef>Q_LONG <Function>readBlock</Function></FuncDef>
+ <FuncDef>TQ_LONG <Function>readBlock</Function></FuncDef>
<ParamDef>char *<Parameter>data</Parameter></ParamDef>
- <ParamDef>Q_ULONG <Parameter>maxlen</Parameter></ParamDef>
+ <ParamDef>TQ_ULONG <Parameter>maxlen</Parameter></ParamDef>
</FuncSynopsis>
<Para>
This takes a single <Literal>maxlen</Literal> parameter. The
@@ -162,7 +162,7 @@ public:
TQHttp();
%If (TQt_3_1_0 -)
TQHttp(TQObject * /TransferThis/,const char * = 0);
- TQHttp(const TQString &,Q_UINT16 = 80,TQObject * /TransferThis/ = 0,
+ TQHttp(const TQString &,TQ_UINT16 = 80,TQObject * /TransferThis/ = 0,
const char * = 0);
virtual ~TQHttp();
%End
@@ -191,7 +191,7 @@ public:
Aborted
};
- int setHost(const TQString &,Q_UINT16 = 80);
+ int setHost(const TQString &,TQ_UINT16 = 80);
int get(const TQString &,TQIODevice * = 0) /ReleaseGIL/;
int post(const TQString &,TQIODevice *,TQIODevice * = 0) /ReleaseGIL/;
@@ -207,7 +207,7 @@ public:
unsigned long bytesAvailable() const;
- SIP_PYOBJECT readBlock(Q_ULONG) /ReleaseGIL/ [Q_LONG (char *,Q_ULONG)];
+ SIP_PYOBJECT readBlock(TQ_ULONG) /ReleaseGIL/ [TQ_LONG (char *,TQ_ULONG)];
%MethodCode
char *buf;
@@ -215,7 +215,7 @@ public:
sipIsErr = 1;
else
{
- Q_LONG actlen;
+ TQ_LONG actlen;
Py_BEGIN_ALLOW_THREADS
actlen = sipCpp -> TQHttp::readBlock(buf,a0);