diff options
Diffstat (limited to 'quacker/noteeditor.cpp')
-rw-r--r-- | quacker/noteeditor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quacker/noteeditor.cpp b/quacker/noteeditor.cpp index ec30f05..6209506 100644 --- a/quacker/noteeditor.cpp +++ b/quacker/noteeditor.cpp @@ -50,9 +50,9 @@ QSize NoteEditor::sizeHint() const return QSize(hint.width(), hint.height() / 2); } -void NoteEditor::positionChanged(const Quackle::GamePosition &position) +void NoteEditor::positionChanged(const Quackle::GamePosition *position) { - showNote(position.explanatoryNote()); + showNote(position->explanatoryNote()); } void NoteEditor::showNote(const UVString ¬e) |