diff options
author | Maciej Rumianowski <maciej.rumianowski@gmail.com> | 2011-09-27 22:04:20 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-09-29 08:09:19 +0200 |
commit | ef01fae2759ac225f281f11a2b24ebaad40be941 (patch) | |
tree | 9ccc0ed54ee2795b719710260bbc4db0e5ea47c3 /svtools/inc | |
parent | f446ca6fe8fe9ebdc66c230f4608fd3de74d0ca9 (diff) |
Replace SvULongs with std::vector in sfx2
Bug 38831, replace SvULongs with std::vector in sfx2 and related svtools
Diffstat (limited to 'svtools/inc')
-rw-r--r-- | svtools/inc/svtools/parhtml.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/svtools/inc/svtools/parhtml.hxx b/svtools/inc/svtools/parhtml.hxx index 627e7870e0ff..ad228f5d7524 100644 --- a/svtools/inc/svtools/parhtml.hxx +++ b/svtools/inc/svtools/parhtml.hxx @@ -32,7 +32,6 @@ #include "svtools/svtdllapi.h" #include <tools/solar.h> #include <tools/string.hxx> -#include <svl/svarray.hxx> #include <svtools/svparser.hxx> #include <boost/ptr_container/ptr_vector.hpp> @@ -45,7 +44,6 @@ namespace com { namespace sun { namespace star { class Color; class SvNumberFormatter; -class SvULongs; class SvKeyValueIterator; #define HTMLFONTSZ1_DFLT 7 @@ -115,7 +113,7 @@ public: sal_uInt32 GetNumber() const; // ... als Zahl sal_Int32 GetSNumber() const; // ... als Zahl - void GetNumbers( SvULongs &rLongs, // ... als Zahlen + void GetNumbers( std::vector<sal_uInt32> &rNumbers, // ... als Zahlen bool bSpaceDelim=false ) const; void GetColor( Color& ) const; // ... als Farbe |