diff options
author | Noel Power <noel.power@novell.com> | 2010-12-06 17:36:55 +0000 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2010-12-06 17:36:55 +0000 |
commit | 2ab0207cd2ac8f18b7dcc8b000d911e21fb6ec7b (patch) | |
tree | 5ecd19ee3abf50f1bf9b3042859a693a5eb42ac9 /automation | |
parent | eaaedfba761123d5e0bb801d3f5575e3989f86df (diff) |
John LeMoyne Castle's currency improvements
Diffstat (limited to 'automation')
-rw-r--r-- | automation/source/testtool/cmdstrm.cxx | 8 | ||||
-rw-r--r-- | automation/source/testtool/objtest.cxx | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/automation/source/testtool/cmdstrm.cxx b/automation/source/testtool/cmdstrm.cxx index a860948c6b04..fe9afc3deb3c 100644 --- a/automation/source/testtool/cmdstrm.cxx +++ b/automation/source/testtool/cmdstrm.cxx @@ -183,8 +183,8 @@ void CmdStream::WriteSortedParams( SbxArray* rPar, BOOL IsKeyString ) { case SbxLONG: // alles immer als Short �bertragen case SbxULONG: - case SbxLONG64: - case SbxULONG64: + case SbxSALINT64: + case SbxSALUINT64: case SbxDOUBLE: case SbxINTEGER: case SbxBYTE: @@ -348,8 +348,8 @@ void CmdStream::GenCmdSlot( USHORT nNr, SbxArray* rPar ) break; case SbxLONG: case SbxULONG: - case SbxLONG64: - case SbxULONG64: + case SbxSALINT64: + case SbxSALUINT64: case SbxDOUBLE: if ( !bWriteUnoSlot ) Write( (USHORT)BinULONG ); diff --git a/automation/source/testtool/objtest.cxx b/automation/source/testtool/objtest.cxx index 6fc4d9e4a18d..5c954dd70996 100644 --- a/automation/source/testtool/objtest.cxx +++ b/automation/source/testtool/objtest.cxx @@ -2267,8 +2267,8 @@ void TestToolObj::SFX_NOTIFY( SfxBroadcaster&, const TypeId&, { case SbxLONG: // alles immer als Short �bertragen case SbxULONG: - case SbxLONG64: - case SbxULONG64: + case SbxSALINT64: + case SbxSALUINT64: case SbxDOUBLE: case SbxINTEGER: case SbxBYTE: |