diff options
Diffstat (limited to 'src/tools/qlocale_p.h')
-rw-r--r-- | src/tools/qlocale_p.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tools/qlocale_p.h b/src/tools/qlocale_p.h index 1b80a4c8b..dbe14ca0f 100644 --- a/src/tools/qlocale_p.h +++ b/src/tools/qlocale_p.h @@ -67,8 +67,8 @@ public: TQString infinity() const; TQString nan() const; - Q_UINT32 languageId() const { return m_language_id; } - Q_UINT32 countryId() const { return m_country_id; } + TQ_UINT32 languageId() const { return m_language_id; } + TQ_UINT32 countryId() const { return m_country_id; } bool isDigit(TQChar d) const; @@ -102,23 +102,23 @@ public: DoubleForm form = DFSignificantDigits, int width = -1, unsigned flags = NoFlags) const; - TQString longLongToString(Q_LLONG l, int precision = -1, + TQString longLongToString(TQ_LLONG l, int precision = -1, int base = 10, int width = -1, unsigned flags = NoFlags) const; - TQString unsLongLongToString(Q_ULLONG l, int precision = -1, + TQString unsLongLongToString(TQ_ULLONG l, int precision = -1, int base = 10, int width = -1, unsigned flags = NoFlags) const; double stringToDouble(TQString num, bool *ok, GroupSeparatorMode group_sep_mode) const; - Q_LLONG stringToLongLong(TQString num, int base, bool *ok, GroupSeparatorMode group_sep_mode) const; - Q_ULLONG stringToUnsLongLong(TQString num, int base, bool *ok, GroupSeparatorMode group_sep_mode) const; + TQ_LLONG stringToLongLong(TQString num, int base, bool *ok, GroupSeparatorMode group_sep_mode) const; + TQ_ULLONG stringToUnsLongLong(TQString num, int base, bool *ok, GroupSeparatorMode group_sep_mode) const; bool removeGroupSeparators(TQString &num_str) const; bool numberToCLocale(TQString &locale_num, GroupSeparatorMode group_sep_mode) const; - Q_UINT32 m_language_id, m_country_id; + TQ_UINT32 m_language_id, m_country_id; - Q_UINT16 m_decimal, m_group, m_list, m_percent, + TQ_UINT16 m_decimal, m_group, m_list, m_percent, m_zero, m_minus, m_exponential; static const TQString m_infinity; |