diff --git a/doc/changelog.dox b/doc/changelog.dox index 3714b47d1..0816e0814 100644 --- a/doc/changelog.dox +++ b/doc/changelog.dox @@ -41,8 +41,9 @@ See also: @subsection changelog-latest-new New features - MSVC 2019 compatibility, with slightly less workarounds needed compared to - MSVC 2017. See also [mosra/magnum-bootstrap#18](https://github.com/mosra/magnum-bootstrap/issues/18) - and [mosra/magnum#343](https://github.com/mosra/magnum/pull/343). + MSVC 2017. See also [mosra/magnum-bootstrap#18](https://github.com/mosra/magnum-bootstrap/issues/18), + [mosra/magnum#343](https://github.com/mosra/magnum/pull/343) and + [mosra/magnum#354](https://github.com/mosra/magnum/issues/354). - New @ref Image::pixels(), @ref ImageView::pixels() and @ref Trade::ImageData::pixels() accessors for convenient direct access to pixel data of any image @@ -359,7 +360,7 @@ See also: application implementations that provide such events - @ref Platform::BasicScreenedApplication is now available also for @ref Platform::AndroidApplication -- New @ref Platform::BasicScreen::BasicScreen(BasicScreenedApplication&, PropagatedEvents&) +- New @ref Platform::BasicScreen::BasicScreen(BasicScreenedApplication&, PropagatedEvents) constructor that directly adds the newly-created screen to an application in a RAII manner, without needing to explicitly call @ref Platform::BasicScreenedApplication::addScreen() and diff --git a/src/Magnum/Platform/Screen.h b/src/Magnum/Platform/Screen.h index 682f0086c..c72dde1c3 100644 --- a/src/Magnum/Platform/Screen.h +++ b/src/Magnum/Platform/Screen.h @@ -227,9 +227,10 @@ template class BasicScreen: * * Unlike with @ref BasicScreen(), the screen is added to the * application already during the construction, removing the need to - * call @ref addScreen() later. This also means @ref focusEvent() is - * not called for the very first time, assuming the screen is put into - * desired state already during construction. + * call @ref BasicScreenedApplication::addScreen() later. This also + * means @ref focusEvent() is not called for the very first time, + * assuming the screen is put into desired state already during + * construction. * @see @ref setPropagatedEvents() */ explicit BasicScreen(BasicScreenedApplication& application, PropagatedEvents events);