summaryrefslogtreecommitdiff
path: root/plugingui/canvas.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/canvas.h')
-rw-r--r--plugingui/canvas.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugingui/canvas.h b/plugingui/canvas.h
index 2326f0e..d6e8f99 100644
--- a/plugingui/canvas.h
+++ b/plugingui/canvas.h
@@ -31,14 +31,14 @@
namespace GUI
{
-//! Abstract class that can be used by the Paiter to draw on.
+//! Abstract class that can be used by the Painter to draw on.
class Canvas
{
public:
virtual ~Canvas() = default;
//! @returns a reference to the pixel buffer.
- virtual PixelBufferAlpha& GetPixelBuffer() = 0;
+ virtual PixelBufferAlpha& getPixelBuffer() = 0;
};
} // GUI::