From 4ffc84699b6966d3d1428341071dacf927af4414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 13 Jun 2013 17:39:23 +0200 Subject: [PATCH] Platform: portable WindowlessApplication usage in `magnum-info`. --- src/Platform/magnum-info.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Platform/magnum-info.cpp b/src/Platform/magnum-info.cpp index ebf533357..169352ac4 100644 --- a/src/Platform/magnum-info.cpp +++ b/src/Platform/magnum-info.cpp @@ -30,14 +30,14 @@ namespace Magnum { -class MagnumInfo: public Platform::WindowlessGlxApplication { +class MagnumInfo: public Platform::WindowlessApplication { public: explicit MagnumInfo(const Arguments& arguments); int exec() override { return 0; } }; -MagnumInfo::MagnumInfo(const Arguments& arguments): WindowlessGlxApplication(arguments) { +MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplication(arguments) { Context* c = Context::current(); Debug() << ""; @@ -136,4 +136,4 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): WindowlessGlxApplication(arg } -MAGNUM_WINDOWLESSGLXAPPLICATION_MAIN(Magnum::MagnumInfo) +MAGNUM_WINDOWLESSAPPLICATION_MAIN(Magnum::MagnumInfo)