From 387ab1b08d1bfc8efe48b7b0aabb244b4070f210 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 18 Jun 2016 21:09:43 +0200 Subject: [PATCH] Platform: compilation fixes for WindowlessNaClApplication. Still can't test it, but at least fixing what Doxygen found. --- src/Magnum/Platform/WindowlessNaClApplication.cpp | 4 ++-- src/Magnum/Platform/WindowlessNaClApplication.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Magnum/Platform/WindowlessNaClApplication.cpp b/src/Magnum/Platform/WindowlessNaClApplication.cpp index 22f0cdbce..440bdd12c 100644 --- a/src/Magnum/Platform/WindowlessNaClApplication.cpp +++ b/src/Magnum/Platform/WindowlessNaClApplication.cpp @@ -57,7 +57,7 @@ WindowlessNaClContext::WindowlessNaClContext(pp::Instance& instance, const Confi WindowlessNaClContext::WindowlessNaClContext(WindowlessNaClContext&&) = default; -WindowlessNaClContext::~WindowlessEglContext() = default; +WindowlessNaClContext::~WindowlessNaClContext() = default; WindowlessNaClContext& WindowlessNaClContext::operator=(WindowlessNaClContext&&) = default; @@ -93,7 +93,7 @@ WindowlessNaClApplication{arguments, NoCreate} { createContext(configuration); } -WindowlessNaClApplication::WindowlessNaClApplication(const Arguments& arguments, NoCreate): Instance(arguments), Graphics3DClient(this), _glContext{NoCreate}, _debugOutput{new ConsoleDebugOutput{this}} {} +WindowlessNaClApplication::WindowlessNaClApplication(const Arguments& arguments, NoCreateT): Instance(arguments), Graphics3DClient(this), _glContext{NoCreate}, _debugOutput{new ConsoleDebugOutput{this}} {} void WindowlessNaClApplication::createContext() { createContext({}); } diff --git a/src/Magnum/Platform/WindowlessNaClApplication.h b/src/Magnum/Platform/WindowlessNaClApplication.h index fba8b8e62..3bee062c8 100644 --- a/src/Magnum/Platform/WindowlessNaClApplication.h +++ b/src/Magnum/Platform/WindowlessNaClApplication.h @@ -79,7 +79,7 @@ class WindowlessNaClContext { * and create @ref Platform::Context instance to be able to use Magnum. * @see @ref isCreated() */ - explicit WindowlessNaClContext(pp::Instance& instance, const Configuration& configuration, const Context* context = nullptr); + explicit WindowlessNaClContext(pp::Instance& instance, const Configuration& configuration, Context* context = nullptr); /** * @brief Construct without creating the context @@ -126,7 +126,7 @@ class WindowlessNaClContext { @brief Configuration @see @ref WindowlessNaClContext(), - @ref WindowlessNaClApplication::WindowlessCglApplication(), + @ref WindowlessNaClApplication::WindowlessNaClApplication(), @ref WindowlessNaClApplication::createContext(), @ref WindowlessNaClApplication::tryCreateContext() */