summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/styles/tqstylefactory.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
commit03256f3cd5149f3ff5f5f45765b0b0659db4e036 (patch)
treecaabe9e1c0e3edfd06ea5aefd4d7279664cd9ede /experimental/tqtinterface/qt4/src/styles/tqstylefactory.cpp
parent0594950f65a713c2d12e8eb6ddd3f5f9b306ec08 (diff)
downloadtde-03256f3cd5149f3ff5f5f45765b0b0659db4e036.tar.gz
tde-03256f3cd5149f3ff5f5f45765b0b0659db4e036.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains
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