summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-11 10:51:57 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-11 11:10:39 +0100
commitc32e596e2457847afdac7b3162b19ad052d4da7c (patch)
treed2439eb1a423cc792b7d97c93cdfbbc0d9ad1e8a /tools
parent6bbdf4dddffd828b38efe8849d7e205f21baaefd (diff)
remove deprecated ByteString::ToInt64, which is a busted 32bit atoi anyway
Diffstat (limited to 'tools')
-rw-r--r--tools/inc/tools/string.hxx1
-rw-r--r--tools/source/string/tstring.cxx9
2 files changed, 0 insertions, 10 deletions
diff --git a/tools/inc/tools/string.hxx b/tools/inc/tools/string.hxx
index 0eaae971d663..72f7489ef324 100644
--- a/tools/inc/tools/string.hxx
+++ b/tools/inc/tools/string.hxx
@@ -203,7 +203,6 @@ public:
}
sal_Int32 ToInt32() const;
- sal_Int64 ToInt64() const;
ByteString& Assign( const ByteString& rStr );
ByteString& Assign( const rtl::OString& rStr );
diff --git a/tools/source/string/tstring.cxx b/tools/source/string/tstring.cxx
index 509bc6270b7e..40310cf9591d 100644
--- a/tools/source/string/tstring.cxx
+++ b/tools/source/string/tstring.cxx
@@ -99,15 +99,6 @@ sal_Int32 ByteString::ToInt32() const
// -----------------------------------------------------------------------
-sal_Int64 ByteString::ToInt64() const
-{
- DBG_CHKTHIS( ByteString, DbgCheckByteString );
-
- return atoi( mpData->maStr );
-}
-
-// -----------------------------------------------------------------------
-
sal_Bool ByteString::IsLowerAscii() const
{
DBG_CHKTHIS( ByteString, DbgCheckByteString );