summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmenumproperty.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmenumproperty.cpp')
-rw-r--r--kpovmodeler/pmenumproperty.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kpovmodeler/pmenumproperty.cpp b/kpovmodeler/pmenumproperty.cpp
index 72a03788..f82579ad 100644
--- a/kpovmodeler/pmenumproperty.cpp
+++ b/kpovmodeler/pmenumproperty.cpp
@@ -23,15 +23,15 @@ PMEnumProperty::PMEnumProperty( const char* name, bool readOnly,
{
}
-void PMEnumProperty::addEnumValue( const QString& str, int value )
+void PMEnumProperty::addEnumValue( const TQString& str, int value )
{
m_valueMap[value] = str;
m_stringMap[str] = value;
}
-QStringList PMEnumProperty::enumValues( ) const
+TQStringList PMEnumProperty::enumValues( ) const
{
- QStringList l;
+ TQStringList l;
PMEnumStringValueMap::const_iterator it;
for( it = m_stringMap.begin( ); it != m_stringMap.end( ); ++it )
l.append( it.key( ) );
@@ -52,6 +52,6 @@ PMVariant PMEnumProperty::getProtected( const PMObject* obj )
int v = getEnum( obj );
PMEnumValueStringMap::const_iterator it = m_valueMap.find( v );
if( it == m_valueMap.end( ) )
- return PMVariant( QString::null );
+ return PMVariant( TQString::null );
return it.data( );
}