From a0580b361e36a6ba2ac95a5b5675b3bba6143463 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 24 Feb 2016 19:39:16 +0100 Subject: [PATCH] Fix warning about ignored attributes for wxControlRenderer This warning was given many times and was very confusing as it wasn't given at all in the right location, but rather for all the other, subsequent declarations of wxControlRenderer which were correct -- unlike this one which used wrong order for the "class" keyword and the attribute. --- include/wx/univ/scrolbar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/univ/scrolbar.h b/include/wx/univ/scrolbar.h index 4f4c3e1b57..d0bb4aad1a 100644 --- a/include/wx/univ/scrolbar.h +++ b/include/wx/univ/scrolbar.h @@ -191,7 +191,7 @@ private: // the object handling the arrows wxScrollArrows m_arrows; - friend WXDLLIMPEXP_CORE class wxControlRenderer; // for geometry methods + friend class WXDLLIMPEXP_FWD_CORE wxControlRenderer; // for geometry methods friend class wxStdScrollBarInputHandler; // for geometry methods wxDECLARE_EVENT_TABLE();