|
From: Tapio V. <aa...@us...> - 2011-02-24 18:26:42
|
Author: Tapio Vierros <tap...@gm...>
Date: Thu Feb 24 20:25:48 2011 +0200
Remove debug print.
---
editorapp.cc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/editorapp.cc b/editorapp.cc
index 3bed318..eb42c71 100644
--- a/editorapp.cc
+++ b/editorapp.cc
@@ -182,7 +182,7 @@ void EditorApp::doOpStack()
noteGraph->clearNotes();
QString newMusic = "";
OperationStack::iterator opit = opStack.begin();
-QElapsedTimer t; t.start();
+
// Re-apply all operations in the stack
while (opit != opStack.end()) {
//std::cout << "Doing op: " << opit->dump() << std::endl;
@@ -219,7 +219,7 @@ QElapsedTimer t; t.start();
erased = false;
}
}
- std::cout << t.elapsed() << std::endl;
+
noteGraph->updateNotes();
if (!newMusic.isEmpty()) setMusic(newMusic);
updateMenuStates();
|