1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Fix minor typos

This commit is contained in:
Yuri Chornoivan
2020-04-11 10:08:33 +03:00
committed by James Crook
parent f420a546a0
commit d1ada5f08c
116 changed files with 195 additions and 195 deletions

View File

@@ -99,7 +99,7 @@ is time to refresh some aspect of the screen.
This is a diagram of TrackPanel's division of one (non-stereo) track rectangle.
Total height equals TrackView::GetHeight()'s value. Total width is the wxWindow's
width. Each charater that is not . represents one pixel.
width. Each character that is not . represents one pixel.
Inset space of this track, and top inset of the next track, are used to draw the
focus highlight.
@@ -814,7 +814,7 @@ void TrackPanel::RefreshTrack(Track *trk, bool refreshbacking)
/// This method overrides Refresh() of wxWindow so that the
/// boolean play indictaor can be set to false, so that an old play indicator that is
/// boolean play indicator can be set to false, so that an old play indicator that is
/// no longer there won't get XORed (to erase it), thus redrawing it on the
/// TrackPanel
void TrackPanel::Refresh(bool eraseBackground /* = TRUE */,
@@ -1164,7 +1164,7 @@ void DrawTrackName(
/*
The following classes define the subdivision of the area of the TrackPanel
into cells with differing reponses to mouse, keyboard, and scroll wheel
into cells with differing responses to mouse, keyboard, and scroll wheel
events.
The classes defining the less inclusive areas are earlier, while those
@@ -1240,7 +1240,7 @@ struct VRulerAndChannel final : TrackPanelGroup {
wxCoord mLeftOffset;
};
// One or more sub-views of one channel, stacked vertically, each contianing
// One or more sub-views of one channel, stacked vertically, each containing
// a vertical ruler and a channel
struct VRulersAndChannels final : TrackPanelGroup {
VRulersAndChannels(
@@ -1360,7 +1360,7 @@ struct LabeledChannelGroup final : TrackPanelGroup {
std::make_shared< ChannelGroup >( mpTrack, mLeftOffset ) }
} }; }
// TrackPanelDrawable impementation
// TrackPanelDrawable implementation
void Draw( TrackPanelDrawingContext &context,
const wxRect &rect, unsigned iPass ) override
{