From 311c175f3184103950c72bc5c775174597430b83 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 14 Jul 2017 01:31:22 +0300 Subject: Replace std::vector into macro STD_VECTOR. In most case it equal to std::vector except debug modes. Now it can be also mse::mstd::vector, but sadly this class not support all required features. --- src/gui/widgets/tabbedarea.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui/widgets/tabbedarea.h') diff --git a/src/gui/widgets/tabbedarea.h b/src/gui/widgets/tabbedarea.h index 4e609970d..c971da391 100644 --- a/src/gui/widgets/tabbedarea.h +++ b/src/gui/widgets/tabbedarea.h @@ -244,7 +244,7 @@ class TabbedArea final : public ActionListener, { return mWidgetContainer; } private: - typedef std::vector > TabContainer; + typedef STD_VECTOR > TabContainer; /** The tab arrows */ Button *mArrowButton[2] A_NONNULLPOINTER; @@ -261,7 +261,7 @@ class TabbedArea final : public ActionListener, Tab* mSelectedTab; BasicContainer2* mTabContainer A_NONNULLPOINTER; BasicContainer2* mWidgetContainer A_NONNULLPOINTER; - std::vector mTabsToDelete; + STD_VECTOR mTabsToDelete; TabContainer mTabs; /** -- cgit v1.2.3-60-g2f50