From ac6cd2584d8bea57ff12afd69115be4ecf70aba6 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Thu, 5 Feb 2009 13:15:14 +0000 Subject: [PATCH] cleanups git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@2000 0778d3d1-df1d-0410-868b-ea421aaaa00d --- include/pattern.h | 4 ---- src/tracks/pattern.cpp | 11 ----------- 2 files changed, 15 deletions(-) diff --git a/include/pattern.h b/include/pattern.h index cb75581ae..d256e90a4 100644 --- a/include/pattern.h +++ b/include/pattern.h @@ -133,10 +133,6 @@ public: using model::dataChanged; - - - void printNotes( void ); // for debugging purposes - protected: diff --git a/src/tracks/pattern.cpp b/src/tracks/pattern.cpp index 51faee1c5..1d20cb479 100644 --- a/src/tracks/pattern.cpp +++ b/src/tracks/pattern.cpp @@ -183,17 +183,6 @@ midiTime pattern::beatPatternLength( void ) const -void pattern::printNotes( void ) -{ - for( noteVector::iterator it = m_notes.begin(); it != m_notes.end(); - ++it ) - { - printf("note (pos = %i)\n", (int) ( *it )->pos() ); - } - printf("\n"); -} - - note * pattern::addNote( const note & _new_note, const bool _quant_pos ) {