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/pmpartiface.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/pmpartiface.h')
-rw-r--r-- | kpovmodeler/pmpartiface.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kpovmodeler/pmpartiface.h b/kpovmodeler/pmpartiface.h index a1fe495e..744b85ca 100644 --- a/kpovmodeler/pmpartiface.h +++ b/kpovmodeler/pmpartiface.h @@ -52,7 +52,7 @@ k_dcop: /** * Inserts a new PMObject of type type */ - virtual void slotNewObject( const QString& type, const QString& pos ) = 0; + virtual void slotNewObject( const TQString& type, const TQString& pos ) = 0; /** * initializes the documents contents */ @@ -84,36 +84,36 @@ k_dcop: /** * returns the currently selected object */ - virtual QString activeObjectName( ) = 0; + virtual TQString activeObjectName( ) = 0; /** * set the current selected object. * returns true if successful or false otherwise */ - virtual bool setActiveObject( const QString& name ) = 0; + virtual bool setActiveObject( const TQString& name ) = 0; /** * Get known properties of the currently active object */ - virtual QStringList getProperties( ) = 0; + virtual TQStringList getProperties( ) = 0; /** * set a property on the currently active object */ - virtual bool setProperty( const QString& property, const PMVariant& value ) = 0; + virtual bool setProperty( const TQString& property, const PMVariant& value ) = 0; /** * set a property on the currently active object */ - virtual bool setProperty( const QString& property, const QString& value ) = 0; + virtual bool setProperty( const TQString& property, const TQString& value ) = 0; /** * Get the value of the given property */ - virtual const PMVariant getProperty( const QString& property ) = 0; + virtual const PMVariant getProperty( const TQString& property ) = 0; /** * Get the value of the given property */ - virtual const QString getPropertyStr( const QString& property ) = 0; + virtual const TQString getPropertyStr( const TQString& property ) = 0; /** * Get a list of known object types. */ - virtual QStringList getObjectTypes( ) = 0; + virtual TQStringList getObjectTypes( ) = 0; }; #endif |