summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/script/InterruptReason.idl
diff options
context:
space:
mode:
Diffstat (limited to 'udkapi/com/sun/star/script/InterruptReason.idl')
-rw-r--r--udkapi/com/sun/star/script/InterruptReason.idl11
1 files changed, 0 insertions, 11 deletions
diff --git a/udkapi/com/sun/star/script/InterruptReason.idl b/udkapi/com/sun/star/script/InterruptReason.idl
index 025b02799dd7..072175a2c69b 100644
--- a/udkapi/com/sun/star/script/InterruptReason.idl
+++ b/udkapi/com/sun/star/script/InterruptReason.idl
@@ -20,60 +20,49 @@
#define __com_sun_star_script_InterruptReason_idl__
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** values used to specify the response for a scripting engine
interrupt.
@deprecated
*/
published enum InterruptReason
{
- //-------------------------------------------------------------------------
/** script execution was cancelled.
*/
Cancel,
- //-------------------------------------------------------------------------
/** runtime error occurred during script execution.
*/
RuntimeError,
- //-------------------------------------------------------------------------
/** script has invalid syntax.
*/
CompileError,
- //-------------------------------------------------------------------------
/** script stopped at a breakpoint.
*/
BreakPoint,
- //-------------------------------------------------------------------------
/** script stops because only one scripting engine command was executed.
*/
Step,
- //-------------------------------------------------------------------------
/** script stops because one step was executed.
*/
StepOver,
- //-------------------------------------------------------------------------
/** script stops because it leaves a function.
*/
StepOut,
- //-------------------------------------------------------------------------
/** script stop because one step was executed.
*/
StepStatement
};
-//=============================================================================
}; }; }; };