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/pmlinkedit.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/pmlinkedit.h')
-rw-r--r-- | kpovmodeler/pmlinkedit.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/kpovmodeler/pmlinkedit.h b/kpovmodeler/pmlinkedit.h index f5abe182..4462393c 100644 --- a/kpovmodeler/pmlinkedit.h +++ b/kpovmodeler/pmlinkedit.h @@ -18,18 +18,18 @@ #ifndef PMLINKEDIT_H #define PMLINKEDIT_H -#include <qwidget.h> +#include <tqwidget.h> #include "pmobject.h" #include "pmdeclare.h" -#include <qvaluelist.h> +#include <tqvaluelist.h> -class QString; -class QLineEdit; -class QPushButton; +class TQString; +class TQLineEdit; +class TQPushButton; /** - * Edit widget for links with a QLineEdit, a select and a clear button. + * Edit widget for links with a TQLineEdit, a select and a clear button. */ class PMLinkEdit : public QWidget { @@ -40,17 +40,17 @@ public: * * Allows the selection of declares of type declareType. */ - PMLinkEdit( const QString& declareType, QWidget* parent, const char* name = 0 ); + PMLinkEdit( const TQString& declareType, TQWidget* parent, const char* name = 0 ); /** * Creates a link edit widget with parent and name. * * Allows the selection of declares of type declares. */ - PMLinkEdit( const QStringList& declares, QWidget* parent, const char* name = 0 ); + PMLinkEdit( const TQStringList& declares, TQWidget* parent, const char* name = 0 ); /** * Creates a link edit widget with parent and name. */ - PMLinkEdit( QWidget* parent, const char* name = 0 ); + PMLinkEdit( TQWidget* parent, const char* name = 0 ); /** * Sets the displayed object and displays the link @@ -64,11 +64,11 @@ public: /** * Sets the selection possibilities */ - void setLinkPossibility( const QString& t ); + void setLinkPossibility( const TQString& t ); /** * Sets the selection possibilities */ - void setLinkPossibilities( const QStringList& t ); + void setLinkPossibilities( const TQStringList& t ); /** * Enables or disables read only mode @@ -94,11 +94,11 @@ private: void init( ); PMDeclare* m_pDeclare; PMObject* m_pDisplayedObject; - QStringList m_declareTypes; + TQStringList m_declareTypes; - QLineEdit* m_pIDEdit; - QPushButton* m_pSelectButton; - QPushButton* m_pClearButton; + TQLineEdit* m_pIDEdit; + TQPushButton* m_pSelectButton; + TQPushButton* m_pClearButton; bool m_bReadOnly; }; |