summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/composite-undo-stack-observer.h6
-rw-r--r--src/undo-stack-observer.h4
2 files changed, 7 insertions, 3 deletions
diff --git a/src/composite-undo-stack-observer.h b/src/composite-undo-stack-observer.h
index 02d54eb76..7b6b693b6 100644
--- a/src/composite-undo-stack-observer.h
+++ b/src/composite-undo-stack-observer.h
@@ -14,6 +14,8 @@
#ifndef __COMPOSITE_UNDO_COMMIT_OBSERVER_H__
#define __COMPOSITE_UNDO_COMMIT_OBSERVER_H__
+#include "gc-alloc.h"
+#include "gc-managed.h"
#include "undo-stack-observer.h"
#include <list>
@@ -32,7 +34,7 @@ public:
/**
* Structure for tracking UndoStackObservers.
*/
- struct UndoStackObserverRecord {
+ struct UndoStackObserverRecord : public GC::Managed<> {
public:
/**
* Constructor.
@@ -88,7 +90,7 @@ public:
};
/// A list of UndoStackObserverRecords, used to aggregate multiple UndoStackObservers.
- typedef std::list< UndoStackObserverRecord > UndoObserverRecordList;
+ typedef std::list< UndoStackObserverRecord, GC::Alloc< UndoStackObserverRecord, GC::MANUAL > > UndoObserverRecordList;
/**
* Constructor.
diff --git a/src/undo-stack-observer.h b/src/undo-stack-observer.h
index cd17c4675..dbda2b980 100644
--- a/src/undo-stack-observer.h
+++ b/src/undo-stack-observer.h
@@ -14,6 +14,8 @@
#ifndef __UNDO_COMMIT_OBSERVER_H__
#define __UNDO_COMMIT_OBSERVER_H__
+#include "gc-managed.h"
+
namespace Inkscape {
class Event;
@@ -32,7 +34,7 @@ class Event;
* UndoStackObservers should not be used on their own. Instead, they should be registered
* with a CompositeUndoStackObserver.
*/
-class UndoStackObserver {
+class UndoStackObserver : public GC::Managed<> {
public:
UndoStackObserver() { }
virtual ~UndoStackObserver() { }