Fix mingw warning of using anonymous type in wxTaskBarButtonImpl fields.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77637 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Bryan Petty
2014-09-10 14:57:30 +00:00
parent 0c6b03c392
commit 3caf0f6889
2 changed files with 26 additions and 28 deletions

View File

@@ -17,9 +17,7 @@
#include "wx/vector.h"
#include "wx/taskbarbutton.h"
namespace {
class WXDLLIMPEXP_FWD_CORE ITaskbarList3;
}
class WXDLLIMPEXP_FWD_CORE wxITaskbarList3;
class WXDLLIMPEXP_CORE wxTaskBarButtonImpl : public wxTaskBarButton
{
@@ -56,7 +54,7 @@ private:
wxThumbBarButton* GetThumbBarButtonByIndex(size_t index);
WXWidget m_hwnd;
ITaskbarList3 *m_taskbarList;
wxITaskbarList3 *m_taskbarList;
typedef wxVector<wxThumbBarButton*> wxThumbBarButtons;
wxThumbBarButtons m_thumbBarButtons;