diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-04 22:42:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-05 10:01:53 +0100 |
commit | 008981b0df22843f174adcb8b8ab77806d817c3a (patch) | |
tree | dd76847bf4d2b16e5115ea9921b3622b26f3bdda | |
parent | 09c28c78d0779abe57945b37d503d10c92ed1c82 (diff) |
callcatcher: unused methods
-rw-r--r-- | automation/source/testtool/cmdstrm.cxx | 16 | ||||
-rw-r--r-- | automation/source/testtool/cmdstrm.hxx | 2 |
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); |