diff options
Diffstat (limited to 'quanta/plugins/quantaplugininterface.h')
-rw-r--r-- | quanta/plugins/quantaplugininterface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/plugins/quantaplugininterface.h b/quanta/plugins/quantaplugininterface.h index 6711e9e0..3e83846e 100644 --- a/quanta/plugins/quantaplugininterface.h +++ b/quanta/plugins/quantaplugininterface.h @@ -46,10 +46,10 @@ public: * the parameters are only used at the first call to create the class * */ - static QuantaPluginInterface* const ref(TQWidget *tqparent = 0L) + static QuantaPluginInterface* const ref(TQWidget *parent = 0L) { static QuantaPluginInterface *m_ref; - if (!m_ref) m_ref = new QuantaPluginInterface (tqparent); + if (!m_ref) m_ref = new QuantaPluginInterface (parent); return m_ref; } @@ -77,7 +77,7 @@ private: * If you need the class use QuantaPluginInterface::ref() for * construction and reference */ - QuantaPluginInterface(TQWidget *tqparent); + QuantaPluginInterface(TQWidget *parent); protected slots: /** slot for the menu: validate */ |