summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/styles/tqstylefactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/styles/tqstylefactory.cpp')
-rw-r--r--experimental/tqtinterface/qt4/src/styles/tqstylefactory.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/experimental/tqtinterface/qt4/src/styles/tqstylefactory.cpp b/experimental/tqtinterface/qt4/src/styles/tqstylefactory.cpp
index 42f1c2f50..6d72738a7 100644
--- a/experimental/tqtinterface/qt4/src/styles/tqstylefactory.cpp
+++ b/experimental/tqtinterface/qt4/src/styles/tqstylefactory.cpp
@@ -212,39 +212,39 @@ TQStringList TQStyleFactory::keys()
#endif //TQT_NO_COMPONENT
#ifndef TQT_NO_STYLE_WINDOWS
- if ( !list.tqcontains( "Windows" ) )
+ if ( !list.contains( "Windows" ) )
list << "Windows";
#endif
#ifndef TQT_NO_STYLE_WINDOWSXP
- if ( !list.tqcontains( "WindowsXP" ) && TQWindowsXPStyle::resolveSymbols() )
+ if ( !list.contains( "WindowsXP" ) && TQWindowsXPStyle::resolveSymbols() )
list << "WindowsXP";
#endif
#ifndef TQT_NO_STYLE_MOTIF
- if ( !list.tqcontains( "Motif" ) )
+ if ( !list.contains( "Motif" ) )
list << "Motif";
#endif
#ifndef TQT_NO_STYLE_CDE
- if ( !list.tqcontains( "CDE" ) )
+ if ( !list.contains( "CDE" ) )
list << "CDE";
#endif
#ifndef TQT_NO_STYLE_MOTIFPLUS
- if ( !list.tqcontains( "MotifPlus" ) )
+ if ( !list.contains( "MotifPlus" ) )
list << "MotifPlus";
#endif
#ifndef TQT_NO_STYLE_PLATINUM
- if ( !list.tqcontains( "Platinum" ) )
+ if ( !list.contains( "Platinum" ) )
list << "Platinum";
#endif
#ifndef TQT_NO_STYLE_SGI
- if ( !list.tqcontains( "SGI" ) )
+ if ( !list.contains( "SGI" ) )
list << "SGI";
#endif
#ifndef TQT_NO_STYLE_COMPACT
- if ( !list.tqcontains( "Compact" ) )
+ if ( !list.contains( "Compact" ) )
list << "Compact";
#endif
#ifndef TQT_NO_STYLE_ATQUA
- if ( !list.tqcontains( "Aqua" ) )
+ if ( !list.contains( "Aqua" ) )
list << "Aqua";
#endif
#if !defined( TQT_NO_STYLE_MAC ) && defined( TQ_WS_MAC )
@@ -257,7 +257,7 @@ TQStringList TQStyleFactory::keys()
if(!GetCollectionItem(c, kThemeNameTag, 0, &s, &str))
mstyle += " (" + p2qstring(str) + ")";
}
- if (!list.tqcontains(mstyle))
+ if (!list.contains(mstyle))
list << mstyle;
DisposeCollection(c);
#endif