summaryrefslogtreecommitdiffstats
path: root/doc/html/qstring-h.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:30 +0900
commit69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch)
tree7b133311a4d5e5394f2612dced305f815c04847b /doc/html/qstring-h.html
parente07baa10b7b8e7105e02a621efadac67216c61ed (diff)
downloadtqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz
tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qstring-h.html')
-rw-r--r--doc/html/qstring-h.html68
1 files changed, 34 insertions, 34 deletions
diff --git a/doc/html/qstring-h.html b/doc/html/qstring-h.html
index d71af1745..272e62586 100644
--- a/doc/html/qstring-h.html
+++ b/doc/html/qstring-h.html
@@ -81,7 +81,7 @@ body { background: #ffffff; color: black; }
#include "ntqcstring.h"
#endif // QT_H
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
#include &lt;limits.h&gt;
#endif
@@ -237,7 +237,7 @@ public:
#else
ushort &amp;unicode() { return ucs; }
#endif
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
// like all ifdef'd code this is undocumented
operator char() const { return latin1(); }
#endif
@@ -441,7 +441,7 @@ public:
TQString( const TQString &amp; ); // impl-shared copy
TQString( const TQByteArray&amp; ); // deep copy
TQString( const TQChar* unicode, uint length ); // deep copy
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
TQString( const char *str ); // deep copy
#endif
#ifndef TQT_NO_STL
@@ -488,7 +488,7 @@ public:
TQString arg( const TQString&amp; a1, const TQString&amp; a2, const TQString&amp; a3,
const TQString&amp; a4 ) const;
-#ifndef QT_NO_SPRINTF
+#ifndef TQT_NO_SPRINTF
TQString &amp;sprintf( const char* format, ... )
#if defined(Q_CC_GNU) &amp;&amp; !defined(__INSURE__)
__attribute__ ((format (printf, 2, 3)))
@@ -499,29 +499,29 @@ public:
int find( TQChar c, int index=0, bool cs=TRUE ) const;
int find( char c, int index=0, bool cs=TRUE ) const;
int find( const TQString &amp;str, int index=0, bool cs=TRUE ) const;
-#ifndef QT_NO_REGEXP
+#ifndef TQT_NO_REGEXP
int find( const TQRegExp &amp;, int index=0 ) const;
#endif
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
int find( const char* str, int index=0 ) const;
#endif
int findRev( TQChar c, int index=-1, bool cs=TRUE) const;
int findRev( char c, int index=-1, bool cs=TRUE) const;
int findRev( const TQString &amp;str, int index=-1, bool cs=TRUE) const;
-#ifndef QT_NO_REGEXP
+#ifndef TQT_NO_REGEXP
int findRev( const TQRegExp &amp;, int index=-1 ) const;
#endif
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
int findRev( const char* str, int index=-1 ) const;
#endif
int contains( TQChar c, bool cs=TRUE ) const;
int contains( char c, bool cs=TRUE ) const
{ return contains(TQChar(c), cs); }
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
int contains( const char* str, bool cs=TRUE ) const;
#endif
int contains( const TQString &amp;str, bool cs=TRUE ) const;
-#ifndef QT_NO_REGEXP
+#ifndef TQT_NO_REGEXP
int contains( const TQRegExp &amp; ) const;
#endif
@@ -534,11 +534,11 @@ public:
};
TQString section( TQChar sep, int start, int end = 0xffffffff, int flags = SectionDefault ) const;
TQString section( char sep, int start, int end = 0xffffffff, int flags = SectionDefault ) const;
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
TQString section( const char *in_sep, int start, int end = 0xffffffff, int flags = SectionDefault ) const;
#endif
TQString section( const TQString &amp;in_sep, int start, int end = 0xffffffff, int flags = SectionDefault ) const;
-#ifndef QT_NO_REGEXP
+#ifndef TQT_NO_REGEXP
TQString section( const TQRegExp &amp;reg, int start, int end = 0xffffffff, int flags = SectionDefault ) const;
#endif
@@ -556,7 +556,7 @@ public:
TQString simplifyWhiteSpace() const;
TQString &amp;insert( uint index, const TQString &amp; );
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
TQString &amp;insert( uint index, const TQByteArray &amp; );
TQString &amp;insert( uint index, const char * );
#endif
@@ -566,21 +566,21 @@ public:
TQString &amp;append( char );
TQString &amp;append( TQChar );
TQString &amp;append( const TQString &amp; );
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
TQString &amp;append( const TQByteArray &amp; );
TQString &amp;append( const char * );
#endif
-#if !defined(TQT_NO_STL) &amp;&amp; !defined(QT_NO_CAST_ASCII)
+#if !defined(TQT_NO_STL) &amp;&amp; !defined(TQT_NO_CAST_ASCII)
TQString &amp;append( const std::string&amp; );
#endif
TQString &amp;prepend( char );
TQString &amp;prepend( TQChar );
TQString &amp;prepend( const TQString &amp; );
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
TQString &amp;prepend( const TQByteArray &amp; );
TQString &amp;prepend( const char * );
#endif
-#if !defined(TQT_NO_STL) &amp;&amp; !defined(QT_NO_CAST_ASCII)
+#if !defined(TQT_NO_STL) &amp;&amp; !defined(TQT_NO_CAST_ASCII)
TQString &amp;prepend( const std::string&amp; );
#endif
TQString &amp;remove( uint index, uint len );
@@ -594,10 +594,10 @@ public:
TQString &amp;remove( TQChar c );
TQString &amp;remove( char c )
{ return remove( TQChar(c) ); }
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
TQString &amp;remove( const char * );
#endif
-#ifndef QT_NO_REGEXP
+#ifndef TQT_NO_REGEXP
TQString &amp;remove( const TQRegExp &amp; );
#endif
TQString &amp;replace( uint index, uint len, const TQString &amp; );
@@ -625,7 +625,7 @@ public:
TQString &amp;replace( const TQString &amp;, const TQString &amp; );
TQString &amp;replace( const TQString &amp;, const TQString &amp;, bool );
#endif
-#ifndef QT_NO_REGEXP_CAPTURE
+#ifndef TQT_NO_REGEXP_CAPTURE
TQString &amp;replace( const TQRegExp &amp;, const TQString &amp; );
#endif
TQString &amp;replace( TQChar, TQChar );
@@ -663,11 +663,11 @@ public:
void setExpand( uint index, TQChar c );
TQString &amp;operator+=( const TQString &amp;str );
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
TQString &amp;operator+=( const TQByteArray &amp;str );
TQString &amp;operator+=( const char *str );
#endif
-#if !defined(TQT_NO_STL) &amp;&amp; !defined(QT_NO_CAST_ASCII)
+#if !defined(TQT_NO_STL) &amp;&amp; !defined(TQT_NO_CAST_ASCII)
TQString &amp;operator+=( const std::string&amp; );
#endif
TQString &amp;operator+=( TQChar c );
@@ -722,7 +722,7 @@ public:
static int localeAwareCompare( const TQString&amp; s1, const TQString&amp; s2 )
{ return s1.localeAwareCompare( s2 ); }
-#ifndef QT_NO_DATASTREAM
+#ifndef TQT_NO_DATASTREAM
friend Q_EXPORT TQDataStream &amp;operator&gt;&gt;( TQDataStream &amp;, TQString &amp; );
#endif
@@ -767,7 +767,7 @@ private:
void checkSimpleText() const;
void grow( uint newLength );
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
TQString &amp;insertHelper( uint index, const char *s, uint len=UINT_MAX );
TQString &amp;operatorPlusEqHelper( const char *s, uint len2=UINT_MAX );
#endif
@@ -860,7 +860,7 @@ public:
/*****************************************************************************
TQString stream functions
*****************************************************************************/
-#ifndef QT_NO_DATASTREAM
+#ifndef TQT_NO_DATASTREAM
Q_EXPORT TQDataStream &amp;operator&lt;&lt;( TQDataStream &amp;, const TQString &amp; );
Q_EXPORT TQDataStream &amp;operator&gt;&gt;( TQDataStream &amp;, TQString &amp; );
#endif
@@ -898,7 +898,7 @@ inline TQString TQString::section( TQChar sep, int start, int end, int flags ) c
inline TQString TQString::section( char sep, int start, int end, int flags ) const
{ return section(TQChar(sep), start, end, flags); }
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
inline TQString TQString::section( const char *in_sep, int start, int end, int flags ) const
{ return section(TQString(in_sep), start, end, flags); }
#endif
@@ -927,7 +927,7 @@ inline bool TQString::isEmpty() const
inline TQString TQString::copy() const
{ return TQString( *this ); }
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
inline TQString &amp;TQString::insert( uint index, const char *s )
{ return insertHelper( index, s ); }
@@ -947,12 +947,12 @@ inline TQString &amp;TQString::prepend( TQChar c )
inline TQString &amp;TQString::prepend( char c )
{ return insert(0,c); }
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
inline TQString &amp;TQString::prepend( const TQByteArray &amp; s )
{ return insert(0,s); }
#endif
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
inline TQString &amp;TQString::operator+=( const TQByteArray &amp;s )
{
int pos = s.find( 0 );
@@ -963,7 +963,7 @@ inline TQString &amp;TQString::operator+=( const TQByteArray &amp;s )
inline TQString &amp;TQString::append( const TQString &amp; s )
{ return operator+=(s); }
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
inline TQString &amp;TQString::append( const TQByteArray &amp;s )
{ return operator+=(s); }
@@ -980,7 +980,7 @@ inline TQString &amp;TQString::append( char c )
#ifndef TQT_NO_STL
inline TQString &amp;TQString::operator=( const std::string&amp; str )
{ return operator=(str.c_str()); }
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
inline TQString &amp;TQString::operator+=( const std::string&amp; s )
{ return operator+=(s.c_str()); }
inline TQString &amp;TQString::append( const std::string&amp; s )
@@ -1037,7 +1037,7 @@ inline int TQString::find( char c, int index, bool cs ) const
inline int TQString::findRev( char c, int index, bool cs ) const
{ return findRev( TQChar(c), index, cs ); }
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
inline int TQString::find( const char* str, int index ) const
{ return find(TQString::fromAscii(str), index); }
@@ -1056,7 +1056,7 @@ Q_EXPORT bool operator&lt;=( const TQString &amp;s1, const TQString &amp;s2 );
Q_EXPORT bool operator==( const TQString &amp;s1, const TQString &amp;s2 );
Q_EXPORT bool operator&gt;( const TQString &amp;s1, const TQString &amp;s2 );
Q_EXPORT bool operator&gt;=( const TQString &amp;s1, const TQString &amp;s2 );
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
Q_EXPORT bool operator!=( const TQString &amp;s1, const char *s2 );
Q_EXPORT bool operator&lt;( const TQString &amp;s1, const char *s2 );
Q_EXPORT bool operator&lt;=( const TQString &amp;s1, const char *s2 );
@@ -1078,7 +1078,7 @@ Q_EXPORT inline const TQString operator+( const TQString &amp;s1, const TQString
return tmp;
}
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
Q_EXPORT inline const TQString operator+( const TQString &amp;s1, const char *s2 )
{
TQString tmp( s1 );