Skip to content

Commit

Permalink
Fix a few typos
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed May 18, 2021
1 parent a8af6b7 commit 2369ad1
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions dgl/Geometry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,8 @@ class Line

#ifndef DPF_TEST_POINT_CPP
/**
Draw this line using the current OpenGL state.
DEPRECATED please use draw(const GraphicsContext&) instead.
Draw this line using the current OpenGL state.@n
DEPRECATED Please use draw(const GraphicsContext&) instead.
*/
DISTRHO_DEPRECATED_BY("draw(const GraphicsContext&)")
void draw();
Expand Down Expand Up @@ -489,15 +489,15 @@ class Circle

#ifndef DPF_TEST_POINT_CPP
/**
Draw this circle using the current OpenGL state.
DEPRECATED please use draw(const GraphicsContext&) instead.
Draw this circle using the current OpenGL state.@n
DEPRECATED Please use draw(const GraphicsContext&) instead.
*/
DISTRHO_DEPRECATED_BY("draw(const GraphicsContext&)")
void draw();

/**
Draw lines (outline of this circle) using the current OpenGL state.
DEPRECATED please use draw(const GraphicsContext&,T) instead.
Draw lines (outline of this circle) using the current OpenGL state.@n
DEPRECATED Please use drawOutline(const GraphicsContext&,T) instead.
*/
DISTRHO_DEPRECATED_BY("drawOutline(const GraphicsContext&)")
void drawOutline();
Expand Down Expand Up @@ -582,15 +582,15 @@ class Triangle

#ifndef DPF_TEST_POINT_CPP
/**
Draw this triangle using the current OpenGL state.
DEPRECATED please use draw(const GraphicsContext&) instead.
Draw this triangle using the current OpenGL state.@n
DEPRECATED Please use draw(const GraphicsContext&) instead.
*/
DISTRHO_DEPRECATED_BY("draw(const GraphicsContext&)")
void draw();

/**
Draw lines (outline of this triangle) using the current OpenGL state.
DEPRECATED please use draw(const GraphicsContext&,T) instead.
Draw lines (outline of this triangle) using the current OpenGL state.@n
DEPRECATED Please use drawOutline(const GraphicsContext&,T) instead.
*/
DISTRHO_DEPRECATED_BY("drawOutline(const GraphicsContext&)")
void drawOutline();
Expand Down Expand Up @@ -801,15 +801,15 @@ class Rectangle
bool operator!=(const Rectangle<T>& size) const noexcept;

/**
Draw this rectangle using the current OpenGL state.
DEPRECATED please use draw(const GraphicsContext&) instead.
Draw this rectangle using the current OpenGL state.@n
DEPRECATED Please use draw(const GraphicsContext&) instead.
*/
DISTRHO_DEPRECATED_BY("draw(const GraphicsContext&)")
void draw();

/** DEPRECATED
Draw lines (outline of this rectangle) using the current OpenGL state.
DEPRECATED please use drawOutline(const GraphicsContext&,T) instead.
/**
Draw lines (outline of this rectangle) using the current OpenGL state.@n
DEPRECATED Please use drawOutline(const GraphicsContext&,T) instead.
*/
DISTRHO_DEPRECATED_BY("drawOutline(const GraphicsContext&)")
void drawOutline();
Expand Down

0 comments on commit 2369ad1

Please sign in to comment.