|
From: Tapio V. <aa...@us...> - 2011-01-13 15:38:51
|
Module: editor
Branch: master
Commit: 4998a446affcffa6ae3b61a59e4cc1a2764d98d6
Author: Tapio Vierros <tap...@gm...>
Date: Thu Jan 13 17:37:29 2011 +0200
Fix a line deleted by mistake.
---
notegraphwidget.cc | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/notegraphwidget.cc b/notegraphwidget.cc
index 202b561..8f50644 100644
--- a/notegraphwidget.cc
+++ b/notegraphwidget.cc
@@ -10,6 +10,7 @@
namespace {
static Operation opFromNote(const NoteLabel& note, int id) {
Operation op("NEW");
+ op << id << note.lyric() << note.x() << note.y() << note.width() << note.height() << note.isFloating();
return op;
}
}
|