diff options
Diffstat (limited to 'quanta/src/viewmanager.h')
-rw-r--r-- | quanta/src/viewmanager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/src/viewmanager.h b/quanta/src/viewmanager.h index 9b600d00..31f0a761 100644 --- a/quanta/src/viewmanager.h +++ b/quanta/src/viewmanager.h @@ -35,10 +35,10 @@ class ViewManager : public TQObject TQ_OBJECT public: /** Returns a reference to the viewmanager object */ - static ViewManager* const ref(TQObject *tqparent = 0L, const char *name = 0L) + static ViewManager* const ref(TQObject *parent = 0L, const char *name = 0L) { static ViewManager *m_ref; - if (!m_ref) m_ref = new ViewManager(tqparent, name); + if (!m_ref) m_ref = new ViewManager(parent, name); return m_ref; } /** The destructor. */ @@ -124,7 +124,7 @@ private slots: private: /** Private constructor for the singleton object. */ - ViewManager(TQObject * tqparent = 0, const char * name = 0); + ViewManager(TQObject * parent = 0, const char * name = 0); /** Returns true if there isn't any opened view holding an editor */ bool allEditorsClosed(); |