aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/undo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/undo.cpp')
-rw-r--r--src/undo.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/undo.cpp b/src/undo.cpp
index 1ee7cb4..4f38353 100644
--- a/src/undo.cpp
+++ b/src/undo.cpp
@@ -57,12 +57,6 @@ UndoStack::push(UndoToken *token)
}
void
-UndoStack::push_msg(unsigned int iMessage, uptr_t wParam, sptr_t lParam)
-{
- push(new UndoTokenMessage(iMessage, wParam, lParam));
-}
-
-void
UndoStack::pop(gint pos)
{
while (!SLIST_EMPTY(&head) && SLIST_FIRST(&head)->pos >= pos) {