From 87d29563e3ccdeb7fea0197e262e667ef323ff9c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 7 Jul 2024 14:56:09 +0900 Subject: Rename utility class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/themes-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/themes-example.html') diff --git a/doc/html/themes-example.html b/doc/html/themes-example.html index 7a2767bc2..1777a7149 100644 --- a/doc/html/themes-example.html +++ b/doc/html/themes-example.html @@ -2195,7 +2195,7 @@ private: #include <tqstylefactory.h> #include <tqaction.h> #include <ntqsignalmapper.h> -#include <ntqdict.h> +#include <tqdict.h> Themes::Themes( TQWidget *parent, const char *name, WFlags f ) : TQMainWindow( parent, name, f ) @@ -2231,20 +2231,20 @@ private: list.insert(list.begin(), "Norwegian Wood"); list.insert(list.begin(), "Metal"); #endif - TQDict<int> stylesDict( 17, FALSE ); + TQDict<int> stylesDict( 17, FALSE ); for ( TQStringList::Iterator it = list.begin(); it != list.end(); ++it ) { TQString styleStr = *it; TQString styleAccel = styleStr; if ( stylesDict[styleAccel.left(1)] ) { for ( uint i = 0; i < styleAccel.length(); i++ ) { if ( !stylesDict[styleAccel.mid( i, 1 )] ) { - stylesDict.insert(styleAccel.mid( i, 1 ), (const int *)1); + stylesDict.insert(styleAccel.mid( i, 1 ), (const int *)1); styleAccel = styleAccel.insert( i, '&' ); break; } } } else { - stylesDict.insert(styleAccel.left(1), (const int *)1); + stylesDict.insert(styleAccel.left(1), (const int *)1); styleAccel = "&"+styleAccel; } TQAction *a = new TQAction( styleStr, TQIconSet(), styleAccel, 0, ag, 0, ag->isExclusive() ); -- cgit v1.2.3