diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-02 08:38:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-02 08:39:18 +0200 |
commit | 60f612785477ab86fe580e4ba8b567a401e09985 (patch) | |
tree | 4d1010525b7071bb591ac00a4e5b69bef0c096f7 /include | |
parent | 4d96fa0cb80f38ee94ec59565b2391848663378d (diff) |
don't need this STL hack anymore
Change-Id: Id0883060acf2ca73af5cce56e1cf9021c2fb121a
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/brwbox.hxx | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/include/svtools/brwbox.hxx b/include/svtools/brwbox.hxx index 266491a5ae70..4e9f2df8c695 100644 --- a/include/svtools/brwbox.hxx +++ b/include/svtools/brwbox.hxx @@ -39,7 +39,6 @@ class BrowserColumn; class BrowserDataWin; class MultiSelection; class BrowserHeader; - typedef ::std::vector< BrowserColumn* > BrowserColumns; namespace svt { @@ -372,16 +371,11 @@ protected: long CalcReverseZoom(long nVal); - inline const DataFlavorExVector& + const DataFlavorExVector& GetDataFlavors() const; bool IsDropFormatSupported( SotClipboardFormatId nFormat ); // need this because the base class' IsDropFormatSupported is not const ... -private: - const DataFlavorExVector& implGetDataFlavors() const; - // with this we can make GetDataFlavors() inline, which is strongly needed as SVTOOLS does not export - // any sysmbol containing an "_STL", so a non-inlined method would not be exported .... - protected: // callbacks for the data window virtual void ImplStartTracking(); @@ -785,11 +779,6 @@ private: }; -inline const DataFlavorExVector& BrowseBox::GetDataFlavors() const -{ - return implGetDataFlavors(); -} - #endif // INCLUDED_SVTOOLS_BRWBOX_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |