summaryrefslogtreecommitdiff
path: root/tools/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-06-22 11:30:14 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-06-22 12:27:33 +0100
commitcd8e530dcd265e2bb67124326957dc4390cc6b0a (patch)
tree2b0ed4cca5845b7a63fa5d15fd3f54e0c7613a83 /tools/inc
parenteba629deb755049bba1850c6a32008ceccb9b11e (diff)
convert BitInt signatures to rtl::OUString
Change-Id: Ic461cdb6283fe48e97787b3f1e8950559d576ca9
Diffstat (limited to 'tools/inc')
-rw-r--r--tools/inc/tools/bigint.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/inc/tools/bigint.hxx b/tools/inc/tools/bigint.hxx
index 1b1d60bdb6e3..89d2d5e60dec 100644
--- a/tools/inc/tools/bigint.hxx
+++ b/tools/inc/tools/bigint.hxx
@@ -29,9 +29,9 @@
#define _BIGINT_HXX
#include <climits>
+#include <rtl/ustring.hxx>
#include "tools/toolsdllapi.h"
#include <tools/solar.h>
-#include <tools/string.hxx>
class SvStream;
#ifdef _TLBIGINT_INT64
@@ -83,7 +83,7 @@ public:
BigInt( sal_uInt16 nVal );
BigInt( sal_uInt32 nVal );
BigInt( const BigInt& rBigInt );
- BigInt( const String& rString );
+ BigInt( const rtl::OUString& rString );
#ifdef _TLBIGINT_INT64
BigInt( const SbxINT64 &r );
BigInt( const SbxUINT64 &r );
@@ -97,7 +97,7 @@ public:
operator sal_uIntPtr() const;
void Set( sal_Bool bSet ) { bIsSet = bSet; }
- String GetString() const;
+ rtl::OUString GetString() const;
sal_Bool IsSet() const { return bIsSet; }
sal_Bool IsNeg() const;