From c32e596e2457847afdac7b3162b19ad052d4da7c Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 11 Aug 2011 10:51:57 +0100 Subject: remove deprecated ByteString::ToInt64, which is a busted 32bit atoi anyway --- automation/source/testtool/tcommuni.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'automation') diff --git a/automation/source/testtool/tcommuni.cxx b/automation/source/testtool/tcommuni.cxx index c726d5193640..32b97075f77c 100644 --- a/automation/source/testtool/tcommuni.cxx +++ b/automation/source/testtool/tcommuni.cxx @@ -170,7 +170,7 @@ sal_uLong GetTTPortConfig() GETSET( abPortToTalk, "TTPort", rtl::OString::valueOf(static_cast(TESTTOOL_DEFAULT_PORT)) ); - return (sal_uLong)abPortToTalk.ToInt64(); + return (sal_uLong)abPortToTalk.ToInt32(); } @@ -197,7 +197,7 @@ sal_uLong GetUnoPortConfig() GETSET( abPortToTalk, "UnoPort", rtl::OString::valueOf(static_cast(UNO_DEFAULT_PORT)) ); - return (sal_uLong)abPortToTalk.ToInt64(); + return (sal_uLong)abPortToTalk.ToInt32(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit