From 902b368207002ba1bdb79e609ada370bc78e5f9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 13 Jun 2013 15:37:42 +0200 Subject: [PATCH] Platform: fixed copypaste error. --- src/Platform/NaClApplication.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Platform/NaClApplication.h b/src/Platform/NaClApplication.h index 289b12f0c..ed33f57b2 100644 --- a/src/Platform/NaClApplication.h +++ b/src/Platform/NaClApplication.h @@ -61,7 +61,7 @@ You need to implement at least drawEvent() and viewportEvent() to be able to draw on the screen. The subclass must be then registered to NaCl API using MAGNUM_NACLAPPLICATION_MAIN() macro. @code -class MyApplication: public Magnum::Platform::Sdl2Application { +class MyApplication: public Magnum::Platform::NaClApplication { // implement required methods... }; MAGNUM_NACLAPPLICATION_MAIN(MyApplication)