summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--automation/source/testtool/cmdstrm.cxx16
-rw-r--r--automation/source/testtool/cmdstrm.hxx2
2 files changed, 0 insertions, 18 deletions
diff --git a/automation/source/testtool/cmdstrm.cxx b/automation/source/testtool/cmdstrm.cxx
index c2947876bde9..0e7adc9989ef 100644
--- a/automation/source/testtool/cmdstrm.cxx
+++ b/automation/source/testtool/cmdstrm.cxx
@@ -422,14 +422,6 @@ void CmdStream::GenCmdFlow( sal_uInt16 nArt )
Write(sal_uInt16(PARAM_NONE)); // Typ der folgenden Parameter
}
-void CmdStream::GenCmdFlow( sal_uInt16 nArt, sal_uInt16 nNr1 )
-{
- Write(sal_uInt16(SIFlow));
- Write(nArt);
- Write(sal_uInt16(PARAM_UINT16_1)); // Typ der folgenden Parameter
- Write(nNr1);
-}
-
void CmdStream::GenCmdFlow( sal_uInt16 nArt, comm_UINT32 nNr1 )
{
Write(sal_uInt16(SIFlow));
@@ -438,14 +430,6 @@ void CmdStream::GenCmdFlow( sal_uInt16 nArt, comm_UINT32 nNr1 )
Write(nNr1);
}
-void CmdStream::GenCmdFlow( sal_uInt16 nArt, String aString1 )
-{
- Write(sal_uInt16(SIFlow));
- Write(nArt);
- Write(sal_uInt16(PARAM_STR_1)); // Typ der folgenden Parameter
- Write(aString1);
-}
-
void CmdStream::Write( String aString, sal_Bool IsKeyString )
{
if ( IsKeyString )
diff --git a/automation/source/testtool/cmdstrm.hxx b/automation/source/testtool/cmdstrm.hxx
index 0f4e6eff2c39..5dac92d4c03f 100644
--- a/automation/source/testtool/cmdstrm.hxx
+++ b/automation/source/testtool/cmdstrm.hxx
@@ -51,9 +51,7 @@ public:
void GenCmdFlow( sal_uInt16 nArt );
- void GenCmdFlow( sal_uInt16 nArt, sal_uInt16 nNr1 );
void GenCmdFlow( sal_uInt16 nArt, comm_UINT32 nNr1 );
- void GenCmdFlow( sal_uInt16 nArt, String aString1 );
void Reset(comm_UINT32 nSequence);