summaryrefslogtreecommitdiffstats
path: root/doc/html/qlocale-h.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qlocale-h.html')
-rw-r--r--doc/html/qlocale-h.html28
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/html/qlocale-h.html b/doc/html/qlocale-h.html
index 8d36eff6..1df5e3a2 100644
--- a/doc/html/qlocale-h.html
+++ b/doc/html/qlocale-h.html
@@ -488,29 +488,29 @@ public:
ushort toUShort(const TQString &s, bool *ok = 0) const;
int toInt(const TQString &s, bool *ok = 0) const;
uint toUInt(const TQString &s, bool *ok = 0) const;
- Q_LONG toLong(const TQString &s, bool *ok = 0) const;
- Q_ULONG toULong(const TQString &s, bool *ok = 0) const;
- Q_LLONG toLongLong(const TQString &s, bool *ok = 0) const;
- Q_ULLONG toULongLong(const TQString &s, bool *ok = 0) const;
+ TQ_LONG toLong(const TQString &s, bool *ok = 0) const;
+ TQ_ULONG toULong(const TQString &s, bool *ok = 0) const;
+ TQ_LLONG toLongLong(const TQString &s, bool *ok = 0) const;
+ TQ_ULLONG toULongLong(const TQString &s, bool *ok = 0) const;
float toFloat(const TQString &s, bool *ok = 0) const;
double toDouble(const TQString &s, bool *ok = 0) const;
TQString toString(short i) const
- { return toString((Q_LLONG)i); }
+ { return toString((TQ_LLONG)i); }
TQString toString(ushort i) const
- { return toString((Q_ULLONG)i); }
+ { return toString((TQ_ULLONG)i); }
TQString toString(int i) const
- { return toString((Q_LLONG)i); }
+ { return toString((TQ_LLONG)i); }
TQString toString(uint i) const
- { return toString((Q_ULLONG)i); }
+ { return toString((TQ_ULLONG)i); }
#if !defined(Q_OS_WIN64)
- TQString toString(Q_LONG i) const
- { return toString((Q_LLONG)i); }
- TQString toString(Q_ULONG i) const
- { return toString((Q_ULLONG)i); }
+ TQString toString(TQ_LONG i) const
+ { return toString((TQ_LLONG)i); }
+ TQString toString(TQ_ULONG i) const
+ { return toString((TQ_ULLONG)i); }
#endif
- TQString toString(Q_LLONG i) const;
- TQString toString(Q_ULLONG i) const;
+ TQString toString(TQ_LLONG i) const;
+ TQString toString(TQ_ULLONG i) const;
TQString toString(float i, char f = 'g', int prec = 6) const
{ return toString((double) i, f, prec); }
TQString toString(double i, char f = 'g', int prec = 6) const;