summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/ui
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-06-01 12:50:46 +0200
committerFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-06-01 12:50:46 +0200
commitf6c1c0f3626c8212bd1d95a91d8d1f113ce910da (patch)
tree4b7ff7125ee42dd80b0be940b35e4712a5530157 /offapi/com/sun/star/ui
parent9d8f2ac47d5103568d13366ec5ef82477ce659a7 (diff)
unoawt: XWizardController::confirmDeactivatePage is not necessary, /me thinks
Diffstat (limited to 'offapi/com/sun/star/ui')
-rw-r--r--offapi/com/sun/star/ui/dialogs/XWizardController.idl12
-rw-r--r--offapi/com/sun/star/ui/dialogs/XWizardPage.idl3
2 files changed, 0 insertions, 15 deletions
diff --git a/offapi/com/sun/star/ui/dialogs/XWizardController.idl b/offapi/com/sun/star/ui/dialogs/XWizardController.idl
index abcec1ce6ef6..6a51a67360fe 100644
--- a/offapi/com/sun/star/ui/dialogs/XWizardController.idl
+++ b/offapi/com/sun/star/ui/dialogs/XWizardController.idl
@@ -65,18 +65,6 @@ interface XWizardController
*/
void onActivatePage( [in] short PageId );
- /** called when the current page is about to be left
-
- <p>In opposite to <member>XWizardPage::commitPage</member>, <code>confirmDeactivatePage</code> is intended for checking
- conditions which involve more than the state of the currently active page.</p>
-
- @param PageId
- the ID of the page which is about to be left.
- @param Reason
- is one of the <type>WizardTravelType</type> contants denoting the reason why the page is about to be left.
- */
- boolean confirmDeactivatePage( [in] short PageId, [in] short Reason );
-
/** called when a page in the wizard is being deactivated
*/
void onDeactivatePage( [in] short PageId );
diff --git a/offapi/com/sun/star/ui/dialogs/XWizardPage.idl b/offapi/com/sun/star/ui/dialogs/XWizardPage.idl
index 50f3212e1cf2..149f8c14709b 100644
--- a/offapi/com/sun/star/ui/dialogs/XWizardPage.idl
+++ b/offapi/com/sun/star/ui/dialogs/XWizardPage.idl
@@ -58,9 +58,6 @@ interface XWizardPage : ::com::sun::star::lang::XComponent
<p>An implementation can veto the leave by returning <FALSE/> here. Usually, the decision about this
depends on the current state of the page.</p>
- <p>Note that <member>XWizardPage::commitPage</member> is called before <member>XWizardController::confirmDeactivatePage</member>
- gets called.</p>
-
@param Reason
is one of the <type>WizardTravelType</type> contants denoting the reason why the page should be
committed.