diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-18 15:17:11 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-18 15:17:11 -0500 |
commit | f09a033f218e0ec0490991ee974f5e932ed11583 (patch) | |
tree | 2f665a8f29dd32f3684955167cb56d37a834ecb3 /sip/qt/qstring.sip | |
parent | 483515d3846e69eb0e1412a53fb3a9496836ebfd (diff) | |
download | pytqt-f09a033f218e0ec0490991ee974f5e932ed11583.tar.gz pytqt-f09a033f218e0ec0490991ee974f5e932ed11583.zip |
Fix references to Q_ULLONG and friends
Diffstat (limited to 'sip/qt/qstring.sip')
-rw-r--r-- | sip/qt/qstring.sip | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sip/qt/qstring.sip b/sip/qt/qstring.sip index 93c47cc..ab30fa4 100644 --- a/sip/qt/qstring.sip +++ b/sip/qt/qstring.sip @@ -487,8 +487,8 @@ public: TQString arg(int /Constrained/,int = 0,int = 10) const; TQString arg(double /Constrained/,int = 0,char = 'g',int = -1) const; %If (TQt_3_2_0 -) -// TQString arg(Q_LLONG,int = 0,int = 10) const; -// TQString arg(Q_ULLONG,int = 0,int = 10) const; +// TQString arg(TQ_LLONG,int = 0,int = 10) const; +// TQString arg(TQ_ULLONG,int = 0,int = 10) const; %End TQString arg(long,int = 0,int = 10) const; TQString arg(ulong,int = 0,int = 10) const; @@ -611,8 +611,8 @@ public: long toLong(bool * = 0,int = 10) const; ulong toULong(bool * = 0,int = 10) const; %If (TQt_3_2_0 -) -// Q_LLONG toLongLong(bool * = 0,int = 10) const; -// Q_ULLONG toULongLong(bool * = 0,int = 10) const; +// TQ_LLONG toLongLong(bool * = 0,int = 10) const; +// TQ_ULLONG toULongLong(bool * = 0,int = 10) const; %End float toFloat(bool * = 0) const; double toDouble(bool * = 0) const; @@ -625,8 +625,8 @@ public: TQString &setNum(long,int = 10); TQString &setNum(ulong,int = 10); %If (TQt_3_2_0 -) -// TQString &setNum(Q_LLONG,int = 10); -// TQString &setNum(Q_ULLONG,int = 10); +// TQString &setNum(TQ_LLONG,int = 10); +// TQString &setNum(TQ_ULLONG,int = 10); %End // TQString &setNum(float,char = 'g',int = 6); @@ -635,8 +635,8 @@ public: static TQString number(long,int = 10); static TQString number(ulong,int = 10); %If (TQt_3_2_0 -) -// static TQString number(Q_LLONG,int = 10); -// static TQString number(Q_ULLONG,int = 10); +// static TQString number(TQ_LLONG,int = 10); +// static TQString number(TQ_ULLONG,int = 10); %End // static TQString number(uint,int = 10); |