From 1a10ee751586bb8f933943cc5336aff239209b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 4 Sep 2016 00:05:30 +0200 Subject: [PATCH] doc: don't use deprecated functionality. Thanks, Clang integrated into KDevelop! --- doc/generated/hello.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/generated/hello.cpp b/doc/generated/hello.cpp index 2af5e7207..5912b10c4 100644 --- a/doc/generated/hello.cpp +++ b/doc/generated/hello.cpp @@ -43,8 +43,8 @@ private: Hello::Hello(const Arguments& arguments): Platform::Application(arguments) { Renderer::setClearColor(Color3::fromHSV(216.0_degf, 0.85f, 1.0f)); - Debug() << "Hello! This application is running on" << Context::current()->version() - << "using" << Context::current()->rendererString(); + Debug() << "Hello! This application is running on" << Context::current().version() + << "using" << Context::current().rendererString(); } void Hello::drawEvent() {