diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-19 19:03:33 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-19 19:03:33 +0000 |
commit | e69e8b1d09fb579316595b4e6a850e717358a8b1 (patch) | |
tree | a24fc20865f65772f530d16177520190594ffdd2 /kpovmodeler/pmsettingsdialog.h | |
parent | eecec9afb81fdebb0f22e9da22635874c403f854 (diff) | |
download | tdegraphics-e69e8b1d09fb579316595b4e6a850e717358a8b1.tar.gz tdegraphics-e69e8b1d09fb579316595b4e6a850e717358a8b1.zip |
TQt4 port kdegraphics
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1237557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmsettingsdialog.h')
-rw-r--r-- | kpovmodeler/pmsettingsdialog.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/kpovmodeler/pmsettingsdialog.h b/kpovmodeler/pmsettingsdialog.h index 478fafe0..adbcdb97 100644 --- a/kpovmodeler/pmsettingsdialog.h +++ b/kpovmodeler/pmsettingsdialog.h @@ -49,14 +49,15 @@ class PMViewLayoutEntry; * methods @ref displaySettings, @ref displayDefaults, @ref validateData * and @ref applySettings */ -class PMSettingsDialogPage : public QWidget +class PMSettingsDialogPage : public TQWidget { Q_OBJECT + TQ_OBJECT public: /** * Constructor */ - PMSettingsDialogPage( TQWidget* parent, const char* name = 0 ); + PMSettingsDialogPage( TQWidget* tqparent, const char* name = 0 ); /** * Display the settings here. * @@ -88,7 +89,7 @@ signals: * Emit this signal if a parameter was changed * that influences the wire frame rendering. */ - void repaintViews( ); + void tqrepaintViews( ); /** * Tells the settings dialog to show this page. */ @@ -126,11 +127,12 @@ public: class PMSettingsDialog : public KDialogBase { Q_OBJECT + TQ_OBJECT public: /** * Standard constructor */ - PMSettingsDialog( PMPart* part, TQWidget* parent = 0, const char* name = 0 ); + PMSettingsDialog( PMPart* part, TQWidget* tqparent = 0, const char* name = 0 ); /** * Registers a new settings page. * @@ -177,7 +179,7 @@ private: bool validateData( ); void saveSettings( ); int findPage( const PMSettingsDialogPage* page ); - bool m_repaint; + bool m_tqrepaint; TQValueList<PMRegisteredSettingsPage> m_pages; PMPart* m_pPart; |