diff options
author | Release Engineers <releng@openoffice.org> | 2009-08-06 11:03:20 +0000 |
---|---|---|
committer | Release Engineers <releng@openoffice.org> | 2009-08-06 11:03:20 +0000 |
commit | f4ba26d7568062c21a569e987a9b3b93849c64ed (patch) | |
tree | 80535c5960ec8b103e8e35a24a57de190fc85fe9 /basctl/source/basicide/basobj2.cxx | |
parent | 12e1a0d94ca1bacc399b3a58d416d21c035c3122 (diff) |
CWS-TOOLING: integrate CWS ab72
2009-08-03 14:57:25 +0200 jsk r274581 : #i103969 - fixed f_windowfunctions.bas
2009-08-03 13:29:21 +0200 jsk r274577 : #i103969 - minor stability improvements and a rewrite to use GUI function to install extension (CLI version fails for some unknown reason)
2009-07-16 10:43:48 +0200 ab r274033 : #i82918# Added support to pass context explicitely to service ctors
2009-07-08 16:24:05 +0200 ab r273839 : CWS-TOOLING: rebase CWS ab72 to trunk@273468 (milestone: DEV300:m51)
2009-07-02 13:09:22 +0200 ab r273641 : #i89740# Fixed resource typos
2009-07-02 12:21:49 +0200 ab r273635 : #i99461# Applied patch
2009-06-23 15:56:08 +0200 ab r273284 : #i100578# applied patch
2009-06-23 11:52:45 +0200 ab r273271 : #i100600# applied patch
2009-06-22 14:35:15 +0200 ab r273231 : #i101603# applied patch
2009-06-22 13:24:22 +0200 ab r273227 : #i100540# applied patch to remove unused code
2009-06-10 13:33:20 +0200 ab r272806 : #i82918# New style service ctor support
Diffstat (limited to 'basctl/source/basicide/basobj2.cxx')
-rw-r--r-- | basctl/source/basicide/basobj2.cxx | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/basctl/source/basicide/basobj2.cxx b/basctl/source/basicide/basobj2.cxx index 4d0ccca05581..e4abb3fad92e 100644 --- a/basctl/source/basicide/basobj2.cxx +++ b/basctl/source/basicide/basobj2.cxx @@ -80,31 +80,6 @@ namespace BasicIDE { //---------------------------------------------------------------------------- -SfxMacro* CreateMacro() -{ - DBG_ERROR( "BasicIDE::CreateMacro() - war eigentlich nur fuer Macro-Recording!" ); - IDE_DLL()->GetExtraData()->ChoosingMacro() = TRUE; - SFX_APP()->EnterBasicCall(); - Window* pParent = Application::GetDefDialogParent(); - SfxMacro* pMacro = 0; - MacroChooser* pChooser = new MacroChooser( pParent, TRUE ); - Window* pOldModalDialogParent = Application::GetDefDialogParent(); - Application::SetDefDialogParent( pChooser ); - //pChooser->SetMode( MACROCHOOSER_RECORDING ); - short nRetValue = pChooser->Execute(); - (void)nRetValue; - - Application::SetDefDialogParent( pOldModalDialogParent ); - delete pChooser; - - SFX_APP()->LeaveBasicCall(); - IDE_DLL()->GetExtraData()->ChoosingMacro() = FALSE; - - return pMacro; -} - -//---------------------------------------------------------------------------- - void Organize( INT16 tabId ) { BasicIDEDLL::Init(); |