summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-04 22:42:38 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-05 10:01:53 +0100
commitc3da6532d3550b8cfa41cdad52c9812917db63dc (patch)
tree3da60d11b9bc58c0f9559d0e9371fba987c6bd65
parent3c714e0fbc2622e823ac1009e23f95939f0f3486 (diff)
callcatcher: unused methods
-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 f76e12a75..ff81f4a57 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 9f104e2b4..7fbbf88ec 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);