1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-19 23:21:33 +01:00

Correct some comments.

Rename method for consistency.
This commit is contained in:
v.audacity
2010-08-08 00:26:07 +00:00
parent 56adffdce6
commit c7826bcdf9
3 changed files with 6 additions and 6 deletions

View File

@@ -3211,7 +3211,7 @@ void AudacityProject::OnCopy()
void AudacityProject::OnPaste()
{
// Handle text paste (into active label) first.
if (this->HandleTextPaste())
if (this->HandlePasteText())
return;
// If nothing's selected, we just insert new tracks.
@@ -3420,7 +3420,7 @@ void AudacityProject::OnPaste()
// Handle text paste (into active label), if any. Return true if did paste.
// (This was formerly the first part of overly-long OnPaste.)
bool AudacityProject::HandleTextPaste()
bool AudacityProject::HandlePasteText()
{
TrackListOfKindIterator iterLabelTrack(Track::Label, mTracks);
LabelTrack* pLabelTrack = (LabelTrack*)(iterLabelTrack.First());