summaryrefslogtreecommitdiff
path: root/extensions/source/abpilot/unodialogabp.cxx
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-09-28 08:57:18 +0000
committerFrank Schönheit <fs@openoffice.org>2001-09-28 08:57:18 +0000
commit75fa0309ecd280bdd06f04e03a2f0e30d0bfc48f (patch)
treef53de3d90d6bd2a75aaefb37ab4d617d1154f861 /extensions/source/abpilot/unodialogabp.cxx
parentfcea38c5583e4825dbd42cfc4a69c829e73cb22b (diff)
#91062# forgot the return value ...
Diffstat (limited to 'extensions/source/abpilot/unodialogabp.cxx')
-rw-r--r--extensions/source/abpilot/unodialogabp.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/extensions/source/abpilot/unodialogabp.cxx b/extensions/source/abpilot/unodialogabp.cxx
index e489d2791b33..62f86f781999 100644
--- a/extensions/source/abpilot/unodialogabp.cxx
+++ b/extensions/source/abpilot/unodialogabp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: unodialogabp.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: fs $ $Date: 2001-09-25 14:17:40 $
+ * last change: $Author: fs $ $Date: 2001-09-28 09:57:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -205,7 +205,8 @@ namespace abp
// not interested in the context, not interested in the args
// -> call the execute method of the XExecutableDialog
- static_cast< XExecutableDialog* >( this )->execute();
+ sal_Bool bSuccess = static_cast< XExecutableDialog* >( this )->execute() ? sal_True : sal_False;
+ return makeAny( bSuccess );
}
//.........................................................................
@@ -215,6 +216,9 @@ namespace abp
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.3 2001/09/25 14:17:40 fs
+ * #91062# signature of XJob::execute slightly changed
+ *
* Revision 1.2 2001/09/14 09:56:05 fs
* #91062# support the XJob interface
*