diff options
Diffstat (limited to 'src/gui/widgets/textpreview.cpp')
-rw-r--r-- | src/gui/widgets/textpreview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/textpreview.cpp b/src/gui/widgets/textpreview.cpp index 6e61a16a5..63b26e444 100644 --- a/src/gui/widgets/textpreview.cpp +++ b/src/gui/widgets/textpreview.cpp @@ -79,7 +79,7 @@ TextPreview::~TextPreview() } } -void TextPreview::draw(Graphics* graphics) +void TextPreview::draw(Graphics *const graphics) { if (!mFont) return; @@ -138,7 +138,7 @@ void TextPreview::draw(Graphics* graphics) BLOCK_END("TextPreview::draw") } -void TextPreview::safeDraw(Graphics* graphics) +void TextPreview::safeDraw(Graphics *const graphics) { TextPreview::draw(graphics); } |