summaryrefslogtreecommitdiffstats
path: root/doc/html/qstring-h.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2018-09-27 17:59:01 +0900
committerMichele Calgaro <[email protected]>2018-09-27 17:59:01 +0900
commit5fd88f2a2099db96bee7a208d09843fd32fd6bf3 (patch)
tree5cfd64687a124eb90c6dfee144b207d30df95073 /doc/html/qstring-h.html
parent3e98ce7f85f06e95ad121c6f541d14464d85919e (diff)
downloadtqt3-5fd88f2a2099db96bee7a208d09843fd32fd6bf3.tar.gz
tqt3-5fd88f2a2099db96bee7a208d09843fd32fd6bf3.zip
qt -> tqt conversion:
QT_NO_ASCII_CAST -> TQT_NO_ASCII_CAST QT_NO_STL -> TQT_NO_STL QT_NO_COMPAT -> TQT_NO_COMPAT QT_NO_TRANSLATION -> TQT_NO_TRANSLATION Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/qstring-h.html')
-rw-r--r--doc/html/qstring-h.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/qstring-h.html b/doc/html/qstring-h.html
index 2776b250c..d71af1745 100644
--- a/doc/html/qstring-h.html
+++ b/doc/html/qstring-h.html
@@ -85,7 +85,7 @@ body { background: #ffffff; color: black; }
#include &lt;limits.h&gt;
#endif
-#ifndef QT_NO_STL
+#ifndef TQT_NO_STL
#if defined ( Q_CC_MSVC_NET ) &amp;&amp; _MSC_VER &lt; 1310 // Avoids nasty warning for xlocale, line 450
# pragma warning ( push )
# pragma warning ( disable : 4189 )
@@ -444,14 +444,14 @@ public:
#ifndef QT_NO_CAST_ASCII
TQString( const char *str ); // deep copy
#endif
-#ifndef QT_NO_STL
+#ifndef TQT_NO_STL
TQString( const std::string&amp; ); // deep copy
#endif
~TQString();
TQString &amp;operator=( const TQString &amp; ); // impl-shared copy
TQString &amp;operator=( const char * ); // deep copy
-#ifndef QT_NO_STL
+#ifndef TQT_NO_STL
TQString &amp;operator=( const std::string&amp; ); // deep copy
#endif
TQString &amp;operator=( const TQCString&amp; ); // deep copy
@@ -570,7 +570,7 @@ public:
TQString &amp;append( const TQByteArray &amp; );
TQString &amp;append( const char * );
#endif
-#if !defined(QT_NO_STL) &amp;&amp; !defined(QT_NO_CAST_ASCII)
+#if !defined(TQT_NO_STL) &amp;&amp; !defined(QT_NO_CAST_ASCII)
TQString &amp;append( const std::string&amp; );
#endif
TQString &amp;prepend( char );
@@ -580,7 +580,7 @@ public:
TQString &amp;prepend( const TQByteArray &amp; );
TQString &amp;prepend( const char * );
#endif
-#if !defined(QT_NO_STL) &amp;&amp; !defined(QT_NO_CAST_ASCII)
+#if !defined(TQT_NO_STL) &amp;&amp; !defined(QT_NO_CAST_ASCII)
TQString &amp;prepend( const std::string&amp; );
#endif
TQString &amp;remove( uint index, uint len );
@@ -667,7 +667,7 @@ public:
TQString &amp;operator+=( const TQByteArray &amp;str );
TQString &amp;operator+=( const char *str );
#endif
-#if !defined(QT_NO_STL) &amp;&amp; !defined(QT_NO_CAST_ASCII)
+#if !defined(TQT_NO_STL) &amp;&amp; !defined(QT_NO_CAST_ASCII)
TQString &amp;operator+=( const std::string&amp; );
#endif
TQString &amp;operator+=( TQChar c );
@@ -699,10 +699,10 @@ public:
TQCString local8Bit() const;
static TQString fromLocal8Bit(const char*, int len=-1);
bool operator!() const;
-#ifndef QT_NO_ASCII_CAST
+#ifndef TQT_NO_ASCII_CAST
operator const char *() const { return ascii(); }
#endif
-#ifndef QT_NO_STL
+#ifndef TQT_NO_STL
operator std::string() const { return ascii() ? ascii() : ""; }
#endif
@@ -728,7 +728,7 @@ public:
void compose();
-#ifndef QT_NO_COMPAT
+#ifndef TQT_NO_COMPAT
const char* data() const { return ascii(); }
#endif
@@ -977,7 +977,7 @@ inline TQString &amp;TQString::append( TQChar c )
inline TQString &amp;TQString::append( char c )
{ return operator+=(c); }
-#ifndef QT_NO_STL
+#ifndef TQT_NO_STL
inline TQString &amp;TQString::operator=( const std::string&amp; str )
{ return operator=(str.c_str()); }
#ifndef QT_NO_CAST_ASCII
@@ -1124,7 +1124,7 @@ Q_EXPORT inline const TQString operator+( char c1, const TQString &amp;s2 )
return tmp;
}
-#ifndef QT_NO_STL
+#ifndef TQT_NO_STL
Q_EXPORT inline const TQString operator+(const TQString&amp; s1, const std::string&amp; s2)
{
return s1 + TQString(s2);