diff options
Diffstat (limited to 'quanta/src/dtds.h')
-rw-r--r-- | quanta/src/dtds.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/src/dtds.h b/quanta/src/dtds.h index 0ecf30cb..4bc5f2f4 100644 --- a/quanta/src/dtds.h +++ b/quanta/src/dtds.h @@ -57,10 +57,10 @@ public: * since this class is a singleton you must use this function to access it * @return the class pointer */ - static DTDs* ref(TQObject *tqparent = 0L) + static DTDs* ref(TQObject *parent = 0L) { static DTDs *m_ref; - if (!m_ref) m_ref = new DTDs(tqparent); + if (!m_ref) m_ref = new DTDs(parent); return m_ref; } @@ -179,7 +179,7 @@ private: * If you need the class use DTDs::ref() for * construction and reference */ - DTDs(TQObject *tqparent); + DTDs(TQObject *parent); /** Reads the tag files and the description.rc from tagDir in order to |