diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-29 09:00:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-29 11:15:36 +0100 |
commit | 293c3714db169d97332870a4857cd242f4b1e5ea (patch) | |
tree | 0b6720caff9964b1b75bb85cd72e507199b8686f /automation | |
parent | db57823374ee65b80cd53c5fd4234ad3bf6e287d (diff) |
remove deprecated ByteString::CreateFromInt64
Diffstat (limited to 'automation')
-rw-r--r-- | automation/source/miniapp/testapp.cxx | 2 | ||||
-rw-r--r-- | automation/source/testtool/objtest.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/automation/source/miniapp/testapp.cxx b/automation/source/miniapp/testapp.cxx index 66cbb38365a0..bb44281b088a 100644 --- a/automation/source/miniapp/testapp.cxx +++ b/automation/source/miniapp/testapp.cxx @@ -209,7 +209,7 @@ sal_uInt16 MyDispatcher::ExecuteFunction( sal_uInt16 nSID, SfxPoolItem** ppArgs, case IDM_SYS_DLG: pMainWin->SysDlg(); break; default: { - OSL_TRACE("Dispatcher kennt Funktion nicht %s",ByteString::CreateFromInt64(nSID).GetBuffer()); + OSL_TRACE("Dispatcher kennt Funktion nicht %s", rtl::OString::valueOf(static_cast<sal_Int64>(nSID)).getStr()); return EXECUTE_NO; } diff --git a/automation/source/testtool/objtest.cxx b/automation/source/testtool/objtest.cxx index 7bff47c80819..42a0da697299 100644 --- a/automation/source/testtool/objtest.cxx +++ b/automation/source/testtool/objtest.cxx @@ -402,7 +402,7 @@ void TestToolObj::LoadIniFile() // Laden der IniEinstellungen, die d aConf.SetGroup("Misc"); String aST; - GETSET( aST, "ServerTimeout", ByteString::CreateFromInt64(Time(0,0,45).GetTime()) ); // 45 Sekunden Initial + GETSET( aST, "ServerTimeout", rtl::OString::valueOf(Time(0,0,45).GetTime()) ); // 45 Sekunden Initial pImpl->aServerTimeout = Time(sal_uLong(aST.ToInt64())); String aSOSE; |