summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp
diff options
context:
space:
mode:
authorasynts <asynts@gmail.com>2021-01-09 18:51:44 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-09 21:11:09 +0100
commit938e5c7719ee546538bdfc44339b6c561b45edc9 (patch)
tree098bcb7d707e3a5e747eb5d5bc7381bb2146d67a /Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp
parent40b8e2111595affb0a6ad8eb643c8f730f7a3c77 (diff)
downloadserenity-938e5c7719ee546538bdfc44339b6c561b45edc9.zip
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.Everything: The modifications in this commit were automatically made using the following command: find . -name '*.cpp' -exec sed -i -E 's/dbg\(\) << ("[^"{]*");/dbgln\(\1\);/' {} \;
Diffstat (limited to 'Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp')
-rw-r--r--Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp b/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp
index 729e78ec57..a043527f5b 100644
--- a/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp
+++ b/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp
@@ -207,7 +207,7 @@ void CanvasRenderingContext2D::fill(const String& fill_rule)
RefPtr<ImageData> CanvasRenderingContext2D::create_image_data(int width, int height) const
{
if (!wrapper()) {
- dbg() << "Hmm! Attempted to create ImageData for wrapper-less CRC2D.";
+ dbgln("Hmm! Attempted to create ImageData for wrapper-less CRC2D.");
return nullptr;
}
return ImageData::create_with_size(wrapper()->global_object(), width, height);