From ef01fae2759ac225f281f11a2b24ebaad40be941 Mon Sep 17 00:00:00 2001 From: Maciej Rumianowski Date: Tue, 27 Sep 2011 22:04:20 +0200 Subject: Replace SvULongs with std::vector in sfx2 Bug 38831, replace SvULongs with std::vector in sfx2 and related svtools --- svtools/inc/svtools/parhtml.hxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'svtools/inc') 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 #include -#include #include #include @@ -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 &rNumbers, // ... als Zahlen bool bSpaceDelim=false ) const; void GetColor( Color& ) const; // ... als Farbe -- cgit