summaryrefslogtreecommitdiffstats
path: root/sip/qtnetwork/qhttp.sip
diff options
context:
space:
mode:
authoraneejit1 <[email protected]>2022-07-29 12:36:09 +0000
committeraneejit1 <[email protected]>2022-07-30 17:54:15 +0000
commit33a0297b35ab40e2d09cf37e351095b58725c8d5 (patch)
tree7eb6d8c710dcb638f2ac00776a3f523311e19c50 /sip/qtnetwork/qhttp.sip
parente602246539fd7435aaeb440fcb7f852c92c8426b (diff)
downloadpytqt-33a0297b35ab40e2d09cf37e351095b58725c8d5.tar.gz
pytqt-33a0297b35ab40e2d09cf37e351095b58725c8d5.zip
Remove support for earlier Qt/TQt versions
Conditional code in the .sip files linked to specific older versions has been removed. Since the versions of TQt and python-tqt are running in parallel, the support for older versions was clutter that would never actually be used now. Signed-off-by: aneejit1 <[email protected]>
Diffstat (limited to 'sip/qtnetwork/qhttp.sip')
-rw-r--r--sip/qtnetwork/qhttp.sip16
1 files changed, 0 insertions, 16 deletions
diff --git a/sip/qtnetwork/qhttp.sip b/sip/qtnetwork/qhttp.sip
index 4762c30..9bb69b6 100644
--- a/sip/qtnetwork/qhttp.sip
+++ b/sip/qtnetwork/qhttp.sip
@@ -56,7 +56,6 @@ This takes a single <Literal>maxlen</Literal> parameter. The
%If (TQt_NETWORKPROTOCOL_HTTP)
-%If (TQt_3_1_0 -)
class TQHttpHeader
{
@@ -147,10 +146,6 @@ protected:
bool parseLine(const TQString &,int);
};
-%End
-
-
-%If (TQt_3_0_0 -)
class TQHttp : TQNetworkProtocol
{
@@ -160,16 +155,13 @@ class TQHttp : TQNetworkProtocol
public:
TQHttp();
-%If (TQt_3_1_0 -)
TQHttp(TQObject * /TransferThis/,const char * = 0);
TQHttp(const TQString &,TQ_UINT16 = 80,TQObject * /TransferThis/ = 0,
const char * = 0);
virtual ~TQHttp();
-%End
int supportedOperations() const;
-%If (TQt_3_1_0 -)
enum State {
Unconnected,
HostLookup,
@@ -246,15 +238,11 @@ public:
Error error() const;
TQString errorString() const;
-%End
public slots:
-%If (TQt_3_1_0 -)
void abort();
-%End
signals:
-%If (TQt_3_1_0 -)
void stateChanged(int);
void responseHeaderReceived(const TQHttpResponseHeader &);
void readyRead(const TQHttpResponseHeader &);
@@ -264,16 +252,12 @@ signals:
void requestStarted(int);
void requestFinished(int,bool);
void done(bool);
-%End
protected:
void operationGet(TQNetworkOperation *);
void operationPut(TQNetworkOperation *);
-%If (TQt_3_1_0 -)
void timerEvent(TQTimerEvent *);
-%End
};
%End
-%End