Fix comments

This commit is contained in:
Paul Licameli 2020-12-07 17:22:13 -05:00
parent 98d7218e31
commit 67db388b25
3 changed files with 4 additions and 4 deletions

View File

@ -99,7 +99,7 @@ std::unique_ptr<wxImage> ChangeImageColour(wxImage * srcImage,
/// Takes a background image, foreground image, and mask
/// (i.e. the alpha channel for the foreground), and
/// returns an NEW image where the foreground has been
/// returns a NEW image where the foreground has been
/// overlaid onto the background using alpha-blending,
/// at location (xoff, yoff).
std::unique_ptr<wxImage> OverlayImage(wxImage * background, wxImage * foreground,
@ -165,7 +165,7 @@ std::unique_ptr<wxImage> OverlayImage(wxImage * background, wxImage * foreground
/// Takes a background image, foreground image, and mask
/// (i.e. the alpha channel for the foreground), and
/// returns an NEW image where the foreground has been
/// returns a NEW image where the foreground has been
/// overlaid onto the background using alpha-blending,
/// at location (xoff, yoff).
std::unique_ptr<wxImage> OverlayImage(teBmps eBack, teBmps eForeground,

View File

@ -33,7 +33,7 @@ std::unique_ptr<wxImage> ChangeImageColour(wxImage * srcImage,
// Takes a background image, foreground image, and mask
// (i.e. the alpha channel for the foreground), and
// returns an NEW image where the foreground has been
// returns a NEW image where the foreground has been
// overlaid onto the background using alpha-blending,
// at location (xoff, yoff).
std::unique_ptr<wxImage> OverlayImage(wxImage * background, wxImage * foreground,

View File

@ -327,7 +327,7 @@ private:
* @return The number of samples from the start of the track which lie before the given time.
*/
sampleCount TimeToLongSamples(double t0) const;
/** @brief Convert correctly between an number of samples and an (absolute) time in seconds.
/** @brief Convert correctly between a number of samples and an (absolute) time in seconds.
*
* @param pos The time number of samples from the start of the track to convert.
* @return The time in seconds.