summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-06-18 15:17:11 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-06-18 15:17:11 -0500
commitf09a033f218e0ec0490991ee974f5e932ed11583 (patch)
tree2f665a8f29dd32f3684955167cb56d37a834ecb3
parent483515d3846e69eb0e1412a53fb3a9496836ebfd (diff)
downloadpytqt-f09a033f218e0ec0490991ee974f5e932ed11583.tar.gz
pytqt-f09a033f218e0ec0490991ee974f5e932ed11583.zip
Fix references to Q_ULLONG and friends
-rw-r--r--sip/qt/qlocale.sip8
-rw-r--r--sip/qt/qstring.sip16
-rw-r--r--sip/qt/qvariant.sip12
3 files changed, 18 insertions, 18 deletions
diff --git a/sip/qt/qlocale.sip b/sip/qt/qlocale.sip
index cc17441..5a85274 100644
--- a/sip/qt/qlocale.sip
+++ b/sip/qt/qlocale.sip
@@ -508,10 +508,10 @@ public:
ushort toUShort(const TQString &,bool * = 0) const;
int toInt(const TQString &,bool * = 0) const;
uint toUInt(const TQString &,bool * = 0) const;
- Q_LONG toLong(const TQString &,bool * = 0) const;
- Q_ULONG toULong(const TQString &,bool * = 0) const;
- //Q_LLONG toLongLong(const TQString &,bool * = 0) const;
- //Q_ULLONG toULongLong(const TQString &,bool * = 0) const;
+ TQ_LONG toLong(const TQString &,bool * = 0) const;
+ TQ_ULONG toULong(const TQString &,bool * = 0) const;
+ //TQ_LLONG toLongLong(const TQString &,bool * = 0) const;
+ //TQ_ULLONG toULongLong(const TQString &,bool * = 0) const;
float toFloat(const TQString &,bool * = 0) const;
double toDouble(const TQString &,bool * = 0) const;
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);
diff --git a/sip/qt/qvariant.sip b/sip/qt/qvariant.sip
index 221da93..36d9eca 100644
--- a/sip/qt/qvariant.sip
+++ b/sip/qt/qvariant.sip
@@ -283,8 +283,8 @@ public:
TQVariant(int /Constrained/);
// TQVariant(uint);
%If (TQt_3_2_0 -)
-// TQVariant(Q_LLONG);
-// TQVariant(Q_ULLONG);
+// TQVariant(TQ_LLONG);
+// TQVariant(TQ_ULLONG);
%End
TQVariant(bool,int);
TQVariant(double);
@@ -348,8 +348,8 @@ public:
int toInt() const;
uint toUInt() const;
%If (TQt_3_2_0 -)
-// Q_LLONG toLongLong(bool * = 0) const;
-// Q_ULLONG toULongLong( bool * = 0) const;
+// TQ_LLONG toLongLong(bool * = 0) const;
+// TQ_ULLONG toULongLong( bool * = 0) const;
%End
bool toBool() const;
double toDouble() const;
@@ -399,8 +399,8 @@ public:
// int & asInt();
// uint & asUInt();
%If (TQt_3_2_0 -)
-// Q_LLONG & asLongLong();
-// Q_ULLONG & asULongLong();
+// TQ_LLONG & asLongLong();
+// TQ_ULLONG & asULongLong();
%End
// bool & asBool();
// double & asDouble();