summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmviewbase.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/pmviewbase.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/pmviewbase.h')
-rw-r--r--kpovmodeler/pmviewbase.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kpovmodeler/pmviewbase.h b/kpovmodeler/pmviewbase.h
index cce59922..357929c4 100644
--- a/kpovmodeler/pmviewbase.h
+++ b/kpovmodeler/pmviewbase.h
@@ -22,10 +22,10 @@
#include <config.h>
#endif
-#include <qwidget.h>
-#include <qstring.h>
+#include <tqwidget.h>
+#include <tqstring.h>
-class QDomElement;
+class TQDomElement;
/**
* This class stores the view configuration for one view.
@@ -47,15 +47,15 @@ public:
* Returns the identifier for the view type. Has to be equal
* to @ref PMViewBase::viewType for the corresponding view type.
*/
- virtual QString viewType( ) const = 0;
+ virtual TQString viewType( ) const = 0;
/**
* Loads the data from the xml element
*/
- virtual void loadData( QDomElement& e ) = 0;
+ virtual void loadData( TQDomElement& e ) = 0;
/**
* Saves the data from to xml element
*/
- virtual void saveData( QDomElement& e ) = 0;
+ virtual void saveData( TQDomElement& e ) = 0;
};
/**
@@ -69,8 +69,8 @@ public:
/**
* Default constructor
*/
- PMViewOptionsWidget( QWidget* parent, const char* name = 0 )
- : QWidget( parent, name )
+ PMViewOptionsWidget( TQWidget* parent, const char* name = 0 )
+ : TQWidget( parent, name )
{
}
@@ -94,19 +94,19 @@ public:
/**
* Default constructor
*/
- PMViewBase( QWidget* parent, const char* name = 0, WFlags f = 0 )
- : QWidget( parent, name, f )
+ PMViewBase( TQWidget* parent, const char* name = 0, WFlags f = 0 )
+ : TQWidget( parent, name, f )
{
}
/**
* Returns the identifier for the view type. Has to be unique
* for all view types.
*/
- virtual QString viewType( ) const = 0;
+ virtual TQString viewType( ) const = 0;
/**
* Returns a i18n'ed description
*/
- virtual QString description( ) const = 0;
+ virtual TQString description( ) const = 0;
/**
* Restores the view configuration
*