diff options
author | aneejit1 <aneejit1@gmail.com> | 2022-07-29 12:36:09 +0000 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2022-07-31 16:43:31 +0200 |
commit | 30381ed7e532384067ad63b4631950d821313199 (patch) | |
tree | 88fc97a0997db6456391b72c4df8345a46ae627d /sip/qt/qurloperator.sip | |
parent | 4978511ebb7e8d31dab64485d1ac87b6e004be81 (diff) | |
download | pytqt-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/qt/qurloperator.sip')
-rw-r--r-- | sip/qt/qurloperator.sip | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/sip/qt/qurloperator.sip b/sip/qt/qurloperator.sip index a078020..20e0d8d 100644 --- a/sip/qt/qurloperator.sip +++ b/sip/qt/qurloperator.sip @@ -35,7 +35,6 @@ This returns a tuple of the <Literal>bool</Literal> result and the %If (TQt_NETWORKPROTOCOL) -%If (TQt_2_1_0 -) class TQUrlOperator : TQObject, TQUrl { @@ -60,15 +59,9 @@ public: virtual const TQNetworkOperation *get(const TQString & = TQString::null); virtual const TQNetworkOperation *put(const TQByteArray &, const TQString & = TQString::null); -%If (- TQt_3_0_0) - virtual TQList<TQNetworkOperation> copy(const TQString &,const TQString &, - bool = 0); -%End -%If (TQt_3_0_0 -) virtual TQPtrList<TQNetworkOperation> copy(const TQString &, const TQString &,bool = 0, bool = 1); -%End virtual void copy(const TQStringList &,const TQString &,bool = 0); virtual bool isDir(bool * = 0); @@ -88,23 +81,12 @@ signals: void itemChanged(TQNetworkOperation *); void data(const TQByteArray &,TQNetworkOperation *); void dataTransferProgress(int,int,TQNetworkOperation *); -%If (- TQt_3_0_0) - void startedNextCopy(const TQList<TQNetworkOperation> &); -%End -%If (TQt_3_0_0 -) void startedNextCopy(const TQPtrList<TQNetworkOperation> &); -%End void connectionStateChanged(int,const TQString &); protected: -%If (- TQt_3_0_0) - virtual void reset(); - virtual bool parse(const TQString &); -%End -%If (TQt_3_0_0 -) void reset(); bool parse(const TQString &); -%End virtual bool checkValid(); virtual void clearEntries(); void getNetworkProtocol(); @@ -112,4 +94,3 @@ protected: }; %End -%End |