Renamed type noteVector to NoteVector

Renamed type noteVector to NoteVector as well as ::iterator to
::Iterator and ::const_iterator to ::ConstIterator.

Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
This commit is contained in:
Tobias Doerffel
2009-06-18 23:24:56 +02:00
parent c4e7aedb58
commit e12476f79c
7 changed files with 77 additions and 77 deletions

View File

@@ -243,7 +243,7 @@ private:
} ;
typedef QVector<note *> noteVector;
typedef QVector<note *> NoteVector;
#endif

View File

@@ -78,7 +78,7 @@ public:
void rearrangeAllNotes( void );
void clearNotes( void );
inline const noteVector & notes( void ) const
inline const NoteVector & notes( void ) const
{
return m_notes;
}
@@ -154,7 +154,7 @@ private:
PatternTypes m_patternType;
// data-stuff
noteVector m_notes;
NoteVector m_notes;
int m_steps;
// pattern freezing

View File

@@ -116,7 +116,7 @@ protected:
int _width, note * _n );
void removeSelection( void );
void selectAll( void );
void getSelectedNotes( noteVector & _selected_notes );
void getSelectedNotes( NoteVector & _selected_notes );
protected slots:
@@ -152,7 +152,7 @@ private:
ModeDraw,
ModeErase,
ModeSelect,
ModeOpen
ModeOpen,
};
enum Actions
@@ -308,12 +308,12 @@ private:
timeLine * m_timeLine;
bool m_scrollBack;
void copy_to_clipboard( const noteVector & _notes ) const;
void copy_to_clipboard( const NoteVector & _notes ) const;
void drawDetuningInfo( QPainter & _p, note * _n, int _x, int _y );
bool mouseOverNote( void );
note * noteUnderMouse( void );
noteVector::const_iterator noteIteratorUnderMouse( void );
NoteVector::const_iterator noteIteratorUnderMouse( void );
// turn a selection rectangle into selected notes
void computeSelectedNotes( bool shift );