summaryrefslogtreecommitdiff
path: root/automation
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-21 00:59:59 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-22 09:39:16 +0100
commite42fcb01bcb23c4ad18fdebaffe9c7b5a421bf9c (patch)
tree2b53b9cd32867ccc09a888516e4536ca8c4acc83 /automation
parent8cb76ea04ad6639d36d554061a01387c881c465c (diff)
unused ctor
Diffstat (limited to 'automation')
-rw-r--r--automation/source/inc/testapp.hxx1
-rw-r--r--automation/source/testtool/objtest.cxx31
2 files changed, 0 insertions, 32 deletions
diff --git a/automation/source/inc/testapp.hxx b/automation/source/inc/testapp.hxx
index c5d04c1fee62..6b257e27b4a0 100644
--- a/automation/source/inc/testapp.hxx
+++ b/automation/source/inc/testapp.hxx
@@ -77,7 +77,6 @@ class TestToolObj: public SbxObject
friend class TTBasic;
friend class Controls;
public:
- TestToolObj( String aName, String aFilePath ); // Alle Dateien in FilePath, Kein IPC
TestToolObj( String aName, MyBasic* pBas ); // Pfade aus INI, IPC benutzen
~TestToolObj();
void LoadIniFile(); // Laden der IniEinstellungen, die durch den ConfigDialog geändert werden können
diff --git a/automation/source/testtool/objtest.cxx b/automation/source/testtool/objtest.cxx
index 1f2be28613c3..80de2e226461 100644
--- a/automation/source/testtool/objtest.cxx
+++ b/automation/source/testtool/objtest.cxx
@@ -285,37 +285,6 @@ SbxTransportMethod::SbxTransportMethod( SbxDataType DT )
}
-TestToolObj::TestToolObj( String aName, String aFilePath ) // Interner Aufruf
-: SbxObject( aName )
-, bUseIPC(sal_False)
-, bReturnOK(sal_True)
-, nSequence(KEEP_SEQUENCES)
-, ProgPath()
-, IsBlock(sal_False)
-, SingleCommandBlock(sal_True)
-, m_pControls(NULL)
-, m_pNameKontext(NULL)
-, m_pSIds(NULL)
-, m_pReverseSlots(NULL)
-, m_pReverseControls(NULL)
-, m_pReverseControlsSon(NULL)
-, m_pReverseUIds(NULL)
-, pCommunicationManager(NULL)
-, aDialogHandlerName()
-, nWindowHandlerCallLevel(0)
-, nIdleCount(0)
-{
- pImpl = new ImplTestToolObj;
- pImpl->ProgParam = String();
- pImpl->aFileBase = DirEntry(aFilePath);
- pImpl->aHIDDir = DirEntry(aFilePath);
- pImpl->bIsStart = sal_False;
- pImpl->pMyBasic = NULL;
-
- pImpl->aServerTimeout = Time(0,1,00); // 1:00 Minuten fest
- InitTestToolObj();
-}
-
TestToolObj::TestToolObj( String aName, MyBasic* pBas ) // Aufruf im Testtool
: SbxObject( aName )
, bUseIPC(sal_True)