diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-03-08 17:27:43 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-03-10 14:04:33 +0900 |
commit | 36f1dec26699ed44dfc99858a201f8eac42dcf97 (patch) | |
tree | 5d60648e2971c53dac821315486864899552e783 /include/svtools | |
parent | b387a3fe97478961c494ca087475cd968d79408b (diff) |
tabbar: move TabBarList to impl
Change-Id: I71632990601bfc21ae2e6ba5c640f1dd3e6c1ee5
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/tabbar.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/svtools/tabbar.hxx b/include/svtools/tabbar.hxx index ba2ecfdfcc19..4a403c4b7741 100644 --- a/include/svtools/tabbar.hxx +++ b/include/svtools/tabbar.hxx @@ -307,7 +307,7 @@ enum TabBarAllowRenamingReturnCode { // - TabBar - struct TabBar_Impl; -struct ImplTabBarItem; +typedef std::vector<ImplTabBarItem*> ImplTabBarList; class SVT_DLLPUBLIC TabBar : public vcl::Window { @@ -317,7 +317,6 @@ class SVT_DLLPUBLIC TabBar : public vcl::Window private: std::unique_ptr<TabBar_Impl> mpImpl; - ImplTabBarList* mpItemList; OUString maEditText; Color maSelColor; Color maSelTextColor; |