summaryrefslogtreecommitdiffstats
path: root/kexi/tests/newapi/dr_prop_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/tests/newapi/dr_prop_test.h')
-rw-r--r--kexi/tests/newapi/dr_prop_test.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/tests/newapi/dr_prop_test.h b/kexi/tests/newapi/dr_prop_test.h
index 71e882e3..d7bfd5b3 100644
--- a/kexi/tests/newapi/dr_prop_test.h
+++ b/kexi/tests/newapi/dr_prop_test.h
@@ -22,17 +22,17 @@
int drPropTest()
{
- QValueList<QCString> names = driver->propertyNames();
- kdDebug() << QString("%1 properties found:").arg(names.count()) << endl;
- for (QValueList<QCString>::ConstIterator it = names.constBegin(); it!=names.constEnd(); ++it) {
+ TQValueList<TQCString> names = driver->propertyNames();
+ kdDebug() << TQString("%1 properties found:").tqarg(names.count()) << endl;
+ for (TQValueList<TQCString>::ConstIterator it = names.constBegin(); it!=names.constEnd(); ++it) {
kdDebug() << " - " << (*it) << ":"
<< " caption=\"" << driver->propertyCaption(*it) << "\""
<< " type=" << driver->propertyValue(*it).typeName()
<< " value=\""<<driver->propertyValue(*it).toString()<<"\"" << endl;
}
-// QVariant propertyValue( const QCString& propName ) const;
+// TQVariant propertyValue( const TQCString& propName ) const;
-// QVariant propertyCaption( const QCString& propName ) const;
+// TQVariant propertyCaption( const TQCString& propName ) const;
return 0;
}