From 69d87202cb139ffe9e4b3ce92e434523b7b09b64 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 17 Oct 2018 19:46:30 +0900 Subject: QT_NO_* -> TQT_NO_* renaming. Signed-off-by: Michele Calgaro --- doc/html/themes-example.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/themes-example.html') diff --git a/doc/html/themes-example.html b/doc/html/themes-example.html index 93ee95927..08b483a8e 100644 --- a/doc/html/themes-example.html +++ b/doc/html/themes-example.html @@ -59,7 +59,7 @@ during runtime using the pulldown menu. #include <ntqpalette.h> -#ifndef QT_NO_STYLE_WINDOWS +#ifndef TQT_NO_STYLE_WINDOWS #include <ntqwindowsstyle.h> @@ -146,7 +146,7 @@ private: #include "wood.h" -#ifndef QT_NO_STYLE_WINDOWS +#ifndef TQT_NO_STYLE_WINDOWS #include "ntqapplication.h" #include "ntqcombobox.h" @@ -1573,7 +1573,7 @@ void NorwegianWoodStyle::drawSemicircleButton( ntqpalette.h> -#ifndef QT_NO_STYLE_WINDOWS +#ifndef TQT_NO_STYLE_WINDOWS #include <ntqwindowsstyle.h> @@ -1642,7 +1642,7 @@ private: #include "metal.h" -#ifndef QT_NO_STYLE_WINDOWS +#ifndef TQT_NO_STYLE_WINDOWS #include "ntqapplication.h" #include "ntqcombobox.h" @@ -2227,7 +2227,7 @@ private: connect( styleMapper, SIGNAL( mapped( const TQString& ) ), this, SLOT( makeStyle( const TQString& ) ) ); TQStringList list = TQStyleFactory::keys(); list.sort(); -#ifndef QT_NO_STYLE_WINDOWS +#ifndef TQT_NO_STYLE_WINDOWS list.insert(list.begin(), "Norwegian Wood"); list.insert(list.begin(), "Metal"); #endif @@ -2261,7 +2261,7 @@ private: help->insertItem( "&About", this, SLOT(about()), Key_F1); help->insertItem( "About &TQt", this, SLOT(aboutTQt())); -#ifndef QT_NO_STYLE_WINDOWS +#ifndef TQT_NO_STYLE_WINDOWS tqApp->setStyle( new NorwegianWoodStyle ); #endif } @@ -2269,11 +2269,11 @@ private: void Themes::makeStyle(const TQString &style) { if(style == "Norwegian Wood") { -#ifndef QT_NO_STYLE_WINDOWS +#ifndef TQT_NO_STYLE_WINDOWS tqApp->setStyle( new NorwegianWoodStyle ); #endif } else if( style == "Metal" ) { -#ifndef QT_NO_STYLE_WINDOWS +#ifndef TQT_NO_STYLE_WINDOWS tqApp->setStyle( new MetalStyle ); #endif } else { -- cgit v1.2.1