diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:16:01 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:16:01 -0600 |
commit | 9771f17f8cc5252b12ec5f3edf47ff9bffdf997f (patch) | |
tree | b9e389db87bdba126010d03fb5bccdc748d0e6fa /quanta/project/project.h | |
parent | 9930e16dde86b7de9b792613d826f4f8648b9768 (diff) | |
download | tdewebdev-9771f17f8cc5252b12ec5f3edf47ff9bffdf997f.tar.gz tdewebdev-9771f17f8cc5252b12ec5f3edf47ff9bffdf997f.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'quanta/project/project.h')
-rw-r--r-- | quanta/project/project.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/project/project.h b/quanta/project/project.h index 42d18fef..e1487ad7 100644 --- a/quanta/project/project.h +++ b/quanta/project/project.h @@ -37,7 +37,7 @@ typedef TQMap<TQString, TQValueList<EventAction> > EventActions; */ class TDEConfig; -class KMainWindow; +class TDEMainWindow; struct TeamMember { TQString name; @@ -64,7 +64,7 @@ public: * the parameter is only used at the first call to create the class * */ - static Project* const ref(KMainWindow *parent = 0L) + static Project* const ref(TDEMainWindow *parent = 0L) { static Project *m_ref; if (!m_ref) m_ref = new Project(parent); @@ -212,7 +212,7 @@ private: * If you need the class use Project::ref() for * construction and reference */ - Project(KMainWindow *parent); + Project(TDEMainWindow *parent); ProjectPrivate *d; bool m_projectToolbarVisible; |