summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmdeclare.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/pmdeclare.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/pmdeclare.h')
-rw-r--r--kpovmodeler/pmdeclare.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kpovmodeler/pmdeclare.h b/kpovmodeler/pmdeclare.h
index d466e60e..89468bf4 100644
--- a/kpovmodeler/pmdeclare.h
+++ b/kpovmodeler/pmdeclare.h
@@ -50,9 +50,9 @@ public:
virtual PMObject* copy( ) const { return new PMDeclare( *this ); }
/** */
- virtual QString description( ) const;
+ virtual TQString description( ) const;
/** */
- virtual QString pixmap( ) const;
+ virtual TQString pixmap( ) const;
/** */
virtual PMMetaObject* metaObject( ) const;
@@ -62,31 +62,31 @@ public:
/** */
virtual bool dataChangeOnInsertRemove( ) const { return true; }
/** */
- 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 PMDeclareEdit
*/
- virtual PMDialogEditBase* editWidget( QWidget* parent ) const;
+ virtual PMDialogEditBase* editWidget( TQWidget* parent ) const;
/**
* Returns the id of the declare
*/
- virtual QString name( ) const { return m_id; }
+ virtual TQString name( ) const { return m_id; }
/**
* Returns the id of the declare
*/
- QString id( ) const { return m_id; }
+ TQString id( ) const { return m_id; }
/**
* Returns the declare type
*/
- QString declareType( ) const;
+ TQString declareType( ) const;
/**
* Sets the id of the object.
*/
- void setID( const QString& id );
+ void setID( const TQString& id );
/** */
virtual bool canHaveName( ) const { return true; }
@@ -131,7 +131,7 @@ private:
/**
* id of the declare
*/
- QString m_id;
+ TQString m_id;
/**
* The linked objects
*/