Rename copy_to_clipboard -> copyToClipboard
This commit is contained in:
@@ -324,7 +324,7 @@ private:
|
||||
TimeLineWidget * m_timeLine;
|
||||
bool m_scrollBack;
|
||||
|
||||
void copy_to_clipboard(const NoteVector & notes ) const;
|
||||
void copyToClipboard(const NoteVector & notes ) const;
|
||||
|
||||
void drawDetuningInfo( QPainter & _p, const Note * _n, int _x, int _y ) const;
|
||||
bool mouseOverNote();
|
||||
|
||||
@@ -3542,7 +3542,7 @@ void PianoRoll::enterValue( NoteVector* nv )
|
||||
}
|
||||
|
||||
|
||||
void PianoRoll::copy_to_clipboard( const NoteVector & notes ) const
|
||||
void PianoRoll::copyToClipboard( const NoteVector & notes ) const
|
||||
{
|
||||
DataFile dataFile( DataFile::ClipboardData );
|
||||
QDomElement note_list = dataFile.createElement( "note-list" );
|
||||
@@ -3572,7 +3572,7 @@ void PianoRoll::copySelectedNotes()
|
||||
|
||||
if( ! selected_notes.empty() )
|
||||
{
|
||||
copy_to_clipboard( selected_notes );
|
||||
copyToClipboard( selected_notes );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3591,7 +3591,7 @@ void PianoRoll::cutSelectedNotes()
|
||||
|
||||
if( ! selected_notes.empty() )
|
||||
{
|
||||
copy_to_clipboard( selected_notes );
|
||||
copyToClipboard( selected_notes );
|
||||
|
||||
Engine::getSong()->setModified();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user