diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmmaterialmap.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-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/pmmaterialmap.h')
-rw-r--r-- | kpovmodeler/pmmaterialmap.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kpovmodeler/pmmaterialmap.h b/kpovmodeler/pmmaterialmap.h index c6713e9f..6377c7bd 100644 --- a/kpovmodeler/pmmaterialmap.h +++ b/kpovmodeler/pmmaterialmap.h @@ -69,7 +69,7 @@ public: /** */ virtual PMObject* copy( ) const { return new PMMaterialMap( *this ); } /** */ - virtual QString description( ) const; + virtual TQString description( ) const; /** */ virtual PMMetaObject* metaObject( ) const; @@ -77,17 +77,17 @@ public: virtual void cleanUp( ) const; /** */ - virtual QString pixmap( ) const { return QString( "pmmaterialmap" ); } + virtual TQString pixmap( ) const { return TQString( "pmmaterialmap" ); } /** */ - 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 PMMaterialMapEdit */ - virtual PMDialogEditBase* editWidget( QWidget* parent ) const; + virtual PMDialogEditBase* editWidget( TQWidget* parent ) const; /** * Gets the bitmap type @@ -96,7 +96,7 @@ public: /** * Gets the bitmap file name */ - QString bitmapFile( ) const { return m_bitmapFile; } + TQString bitmapFile( ) const { return m_bitmapFile; } /** * Returns true if once is enabled */ @@ -117,7 +117,7 @@ public: void setBitmapType( PMBitmapType c ); /** * Sets the bitmap file name*/ - void setBitmapFileName( const QString& c ); + void setBitmapFileName( const TQString& c ); /** * Sets if the bitmap should be mapped once */ @@ -142,7 +142,7 @@ private: * MaterialMap type */ PMBitmapType m_bitmapType; - QString m_bitmapFile; + TQString m_bitmapFile; bool m_once; PMMapType m_mapType; PMInterpolateType m_interpolateType; |