summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmheightfield.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmheightfield.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz
tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmheightfield.h')
-rw-r--r--kpovmodeler/pmheightfield.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kpovmodeler/pmheightfield.h b/kpovmodeler/pmheightfield.h
index 4ab961c8..443226ba 100644
--- a/kpovmodeler/pmheightfield.h
+++ b/kpovmodeler/pmheightfield.h
@@ -57,24 +57,24 @@ public:
/** */
virtual PMObject* copy( ) const { return new PMHeightField( *this ); }
/** */
- virtual QString description( ) const;
+ virtual TQString description( ) const;
/** */
virtual PMMetaObject* metaObject( ) const;
/** */
- virtual void serialize( QDomElement& e, QDomDocument& doc ) const;
+ virtual void serialize( TQDomElement& e, TQDomDocument& doc ) const;
/** */
virtual void readAttributes( const PMXMLHelper& h );
/**
* Returns a new @ref PMHeightFieldEdit
*/
- virtual PMDialogEditBase* editWidget( QWidget* parent ) const;
+ virtual PMDialogEditBase* editWidget( TQWidget* parent ) const;
/**
* Returns the name of the pixmap that is displayed in the tree view
* and dialog view
*/
- virtual QString pixmap( ) const { return QString( "pmheightfield" ); }
+ virtual TQString pixmap( ) const { return TQString( "pmheightfield" ); }
/**
* Returns the height field type
@@ -87,11 +87,11 @@ public:
/**
* Returns the file name
*/
- QString fileName( ) const { return m_fileName; }
+ TQString fileName( ) const { return m_fileName; }
/**
* Sets the file name
*/
- void setFileName( const QString& name );
+ void setFileName( const TQString& name );
/**
* Returns the hierarchy flag
*/
@@ -133,8 +133,8 @@ public:
/** */
virtual void cleanUp( ) const;
- static QString typeToString( HeightFieldType t );
- static HeightFieldType stringToType( const QString &str );
+ static TQString typeToString( HeightFieldType t );
+ static HeightFieldType stringToType( const TQString &str );
protected:
/** */
@@ -159,7 +159,7 @@ private:
PMHierarchyID, PMSmoothID, PMWaterLevelID };
HeightFieldType m_hfType;
- QString m_fileName;
+ TQString m_fileName;
bool m_hierarchy;
bool m_smooth;
double m_waterLevel;