summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorDaniel Rentz <dr@openoffice.org>2010-07-07 19:44:06 +0200
committerDaniel Rentz <dr@openoffice.org>2010-07-07 19:44:06 +0200
commitecc8b1ae1dd2ca82d37c7e660dd5949caefe37f6 (patch)
tree129c2957b40376924f46989fa175543db439babb /offapi
parentb103addffc04b4ac0072992f2ec077135150d3ba (diff)
mib17: adjusted codename handling in xls filter, do not restrict vba event handling to xls files
Diffstat (limited to 'offapi')
-rwxr-xr-xoffapi/com/sun/star/script/vba/EventIdentifier.idl10
-rwxr-xr-xoffapi/com/sun/star/script/vba/XCoreEventProcessor.idl1
-rwxr-xr-xoffapi/com/sun/star/script/vba/XEventProcessor.idl1
3 files changed, 5 insertions, 7 deletions
diff --git a/offapi/com/sun/star/script/vba/EventIdentifier.idl b/offapi/com/sun/star/script/vba/EventIdentifier.idl
index ea200c858c30..f70a84d9ace8 100755
--- a/offapi/com/sun/star/script/vba/EventIdentifier.idl
+++ b/offapi/com/sun/star/script/vba/EventIdentifier.idl
@@ -87,11 +87,11 @@ constants EventIdentifier
const long WORKBOOK_DEACTIVATE = 2002;
/** Document opened (loaded). No arguments. */
const long WORKBOOK_OPEN = 2003;
- /** Document about to be closed. No arguments. Cancellable. */
+ /** Document about to be closed. Arguments: [out] boolean bCancel. */
const long WORKBOOK_BEFORECLOSE = 2004;
- /** Document about to be printed. No arguments. Cancellable. */
+ /** Document about to be printed. Arguments: [out] boolean bCancel. */
const long WORKBOOK_BEFOREPRINT = 2005;
- /** Document about to be saved. Arguments: boolean bSaveAs. Cancellable. */
+ /** Document about to be saved. Arguments: boolean bSaveAs, [out] boolean bCancel. */
const long WORKBOOK_BEFORESAVE = 2006;
/** Document has been saved. Arguments: boolean bSuccess. */
const long WORKBOOK_AFTERSAVE = 2007;
@@ -111,9 +111,9 @@ constants EventIdentifier
const long WORKSHEET_ACTIVATE = 2101;
/** Worksheet has been activated (made visible). Arguments: short nSheet. */
const long WORKSHEET_DEACTIVATE = 2102;
- /** Double click in the sheet. Arguments: XRange/XSheetCellRangeContainer aRange. */
+ /** Double click in the sheet. Arguments: XRange/XSheetCellRangeContainer aRange. [out] boolean bCancel. */
const long WORKSHEET_BEFOREDOUBLECLICK = 2103;
- /** Right click in the sheet. Arguments: XRange/XSheetCellRangeContainer aRange. */
+ /** Right click in the sheet. Arguments: XRange/XSheetCellRangeContainer aRange. [out] boolean bCancel. */
const long WORKSHEET_BEFORERIGHTCLICK = 2104;
/** Cells in sheet have been recalculated. Arguments: short nSheet. */
const long WORKSHEET_CALCULATE = 2105;
diff --git a/offapi/com/sun/star/script/vba/XCoreEventProcessor.idl b/offapi/com/sun/star/script/vba/XCoreEventProcessor.idl
index be152a8ba7fd..989b1f4039cb 100755
--- a/offapi/com/sun/star/script/vba/XCoreEventProcessor.idl
+++ b/offapi/com/sun/star/script/vba/XCoreEventProcessor.idl
@@ -30,7 +30,6 @@
#include <com/sun/star/lang/IllegalArgumentException.idl>
#include <com/sun/star/script/provider/ScriptFrameworkErrorException.idl>
-#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/util/VetoException.idl>
//=============================================================================
diff --git a/offapi/com/sun/star/script/vba/XEventProcessor.idl b/offapi/com/sun/star/script/vba/XEventProcessor.idl
index 579cdf881963..d856aeaa0a99 100755
--- a/offapi/com/sun/star/script/vba/XEventProcessor.idl
+++ b/offapi/com/sun/star/script/vba/XEventProcessor.idl
@@ -30,7 +30,6 @@
#include <com/sun/star/lang/IllegalArgumentException.idl>
#include <com/sun/star/script/provider/ScriptFrameworkErrorException.idl>
-#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/util/VetoException.idl>
//=============================================================================