diff options
Diffstat (limited to 'sip/qtnetwork/qftp.sip')
-rw-r--r-- | sip/qtnetwork/qftp.sip | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sip/qtnetwork/qftp.sip b/sip/qtnetwork/qftp.sip index 73dca92..14dc455 100644 --- a/sip/qtnetwork/qftp.sip +++ b/sip/qtnetwork/qftp.sip @@ -23,9 +23,9 @@ %ExportedDoc <Sect2><Title>TQFtp (TQt v2.2+)</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 @@ -93,7 +93,7 @@ public: RawCommand }; - int connectToHost(const TQString &,Q_UINT16 = 21) /ReleaseGIL/; + int connectToHost(const TQString &,TQ_UINT16 = 21) /ReleaseGIL/; int login(const TQString & = TQString::null, const TQString & = TQString::null) /ReleaseGIL/; int close() /ReleaseGIL/; @@ -111,7 +111,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; @@ -119,7 +119,7 @@ public: sipIsErr = 1; else { - Q_LONG actlen; + TQ_LONG actlen; Py_BEGIN_ALLOW_THREADS actlen = sipCpp -> TQFtp::readBlock(buf,a0); |