summaryrefslogtreecommitdiff
path: root/offapi/com/sun
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
commitfbbb9a70293910ea0c95a465cf2467a75e00d85d (patch)
treed145fb6693516eb8ba41802dcc4f693c453d7a76 /offapi/com/sun
parentba276881288565e2271f696754f81aff283bc25e (diff)
mib17: adjusted codename handling in xls filter, do not restrict vba event handling to xls files
Diffstat (limited to 'offapi/com/sun')
-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 cdceedff1..67bf98b17 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 5239eb7a3..243c7872d 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 e8adec700..613c0d9cf 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>
//=============================================================================