diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:30 +0900 |
commit | 69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch) | |
tree | 7b133311a4d5e5394f2612dced305f815c04847b /src/kernel/qfont.cpp | |
parent | e07baa10b7b8e7105e02a621efadac67216c61ed (diff) | |
download | tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip |
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kernel/qfont.cpp')
-rw-r--r-- | src/kernel/qfont.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kernel/qfont.cpp b/src/kernel/qfont.cpp index 856db67dc..455941123 100644 --- a/src/kernel/qfont.cpp +++ b/src/kernel/qfont.cpp @@ -1369,7 +1369,7 @@ void TQFont::setDefaultFont( const TQFont &f ) -#ifndef QT_NO_STRINGLIST +#ifndef TQT_NO_STRINGLIST /***************************************************************************** TQFont substitution management @@ -1540,7 +1540,7 @@ TQStringList TQFont::substitutions() return ret; } -#endif // QT_NO_STRINGLIST +#endif // TQT_NO_STRINGLIST /* \internal @@ -1572,7 +1572,7 @@ static TQ_UINT8 get_font_bits( const TQFontPrivate *f ) } -#ifndef QT_NO_DATASTREAM +#ifndef TQT_NO_DATASTREAM /* \internal Internal function. Sets boolean font settings from an unsigned @@ -1639,7 +1639,7 @@ TQString TQFont::toString() const */ bool TQFont::fromString(const TQString &descrip) { -#ifndef QT_NO_STRINGLIST +#ifndef TQT_NO_STRINGLIST TQStringList l(TQStringList::split(',', descrip)); int count = (int)l.count(); @@ -1654,7 +1654,7 @@ bool TQFont::fromString(const TQString &descrip) from = to+1; to = descrip.find( ',', from ); } -#endif // QT_NO_STRINGLIST +#endif // TQT_NO_STRINGLIST if ( !count || ( count > 2 && count < 9 ) || count > 11 ) { #ifdef QT_CHECK_STATE @@ -1708,7 +1708,7 @@ void TQFont::cacheStatistics() /***************************************************************************** TQFont stream functions *****************************************************************************/ -#ifndef QT_NO_DATASTREAM +#ifndef TQT_NO_DATASTREAM /*! \relates TQFont @@ -1798,7 +1798,7 @@ TQDataStream &operator>>( TQDataStream &s, TQFont &font ) return s; } -#endif // QT_NO_DATASTREAM +#endif // TQT_NO_DATASTREAM |