diff options
Diffstat (limited to 'src/document/RosegardenGUIDoc.h')
-rw-r--r-- | src/document/RosegardenGUIDoc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/document/RosegardenGUIDoc.h b/src/document/RosegardenGUIDoc.h index a7d972e..1218673 100644 --- a/src/document/RosegardenGUIDoc.h +++ b/src/document/RosegardenGUIDoc.h @@ -37,7 +37,7 @@ #include "gui/editors/segment/segmentcanvas/AudioPreviewThread.h" #include <map> #include "sound/AudioFileManager.h" -// #include <tqlist.h> (fixes problem for Adam Dingle) +#include <tqptrlist.h> #include <tqobject.h> #include <tqstring.h> #include <tqstringlist.h> @@ -439,7 +439,7 @@ public: /** * return the list of the views currently connected to the document */ - TQList<RosegardenGUIView>& getViewList() { return m_viewList; } + TQPtrList<RosegardenGUIView>& getViewList() { return m_viewList; } bool isBeingDestroyed() { return m_beingDestroyed; } @@ -617,12 +617,12 @@ protected: /** * the list of the views currently connected to the document */ - TQList<RosegardenGUIView> m_viewList; + TQPtrList<RosegardenGUIView> m_viewList; /** * the list of the edit views currently editing a part of this document */ - TQList<EditViewBase> m_editViewList; + TQPtrList<EditViewBase> m_editViewList; /** * the modified flag of the current document |