summaryrefslogtreecommitdiffstats
path: root/sip/qtnetwork/qftp.sip
diff options
context:
space:
mode:
authoraneejit1 <aneejit1@gmail.com>2022-07-29 12:36:09 +0000
committerSlávek Banko <slavek.banko@axis.cz>2022-07-31 16:43:31 +0200
commit30381ed7e532384067ad63b4631950d821313199 (patch)
tree88fc97a0997db6456391b72c4df8345a46ae627d /sip/qtnetwork/qftp.sip
parent4978511ebb7e8d31dab64485d1ac87b6e004be81 (diff)
downloadpytqt-30381ed7e532384067ad63b4631950d821313199.tar.gz
pytqt-30381ed7e532384067ad63b4631950d821313199.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 <aneejit1@gmail.com> (cherry picked from commit 33a0297b35ab40e2d09cf37e351095b58725c8d5)
Diffstat (limited to 'sip/qtnetwork/qftp.sip')
-rw-r--r--sip/qtnetwork/qftp.sip15
1 files changed, 0 insertions, 15 deletions
diff --git a/sip/qtnetwork/qftp.sip b/sip/qtnetwork/qftp.sip
index 94aed30..9edb2c4 100644
--- a/sip/qtnetwork/qftp.sip
+++ b/sip/qtnetwork/qftp.sip
@@ -37,7 +37,6 @@ This takes a single <Literal>maxlen</Literal> parameter. The
%If (TQt_NETWORKPROTOCOL_FTP)
-%If (TQt_2_2_0 -)
class TQFtp : TQNetworkProtocol
{
@@ -47,19 +46,11 @@ class TQFtp : TQNetworkProtocol
public:
TQFtp();
-%If (TQt_3_1_0 -)
TQFtp(TQObject * /TransferThis/,const char * = 0);
-%End
virtual ~TQFtp();
-%If (TQt_3_0_0 -)
int supportedOperations() const;
-%End
-%If (- TQt_3_0_0)
- virtual int supportedOperations() const;
-%End
-%If (TQt_3_1_0 -)
enum State {
Unconnected,
HostLookup,
@@ -149,15 +140,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 listInfo(const TQUrlInfo &);
void readyRead();
@@ -167,7 +154,6 @@ signals:
void commandStarted(int);
void commandFinished(int,bool);
void done(bool);
-%End
protected:
void parseDir(const TQString &,TQUrlInfo &);
@@ -183,4 +169,3 @@ private:
};
%End
-%End