diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-03-06 18:05:06 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-03-06 18:05:06 +0000 |
commit | 3df4613321bfe28e704258523a57727e7edc611b (patch) | |
tree | c8d2bd87e248dbed995ee7f5adf64dcfc8afe6c2 /sw/source | |
parent | b00950f05a86b40ac8858f2322c7d05209aeaef3 (diff) |
INTEGRATION: CWS odbmacros2 (1.13.124); FILE MERGED
2008/02/11 11:13:29 fs 1.13.124.1: IWizardPage is COMMIT_REASON is deprecated - replace usages with CommitPageReason, while I have an svtools-incompatible CWS
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/ui/dbui/mmdocselectpage.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/dbui/mmdocselectpage.cxx b/sw/source/ui/dbui/mmdocselectpage.cxx index ff17113b54a3..e2aa92f114cb 100644 --- a/sw/source/ui/dbui/mmdocselectpage.cxx +++ b/sw/source/ui/dbui/mmdocselectpage.cxx @@ -4,9 +4,9 @@ * * $RCSfile: mmdocselectpage.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: hr $ $Date: 2007-09-27 11:33:36 $ + * last change: $Author: kz $ $Date: 2008-03-06 19:05:06 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -235,11 +235,11 @@ IMPL_LINK(SwMailMergeDocSelectPage, FileSelectHdl, PushButton*, pButton) /*-- 06.04.2004 12:52:24--------------------------------------------------- -----------------------------------------------------------------------*/ -sal_Bool SwMailMergeDocSelectPage::commitPage(COMMIT_REASON _eReason) +sal_Bool SwMailMergeDocSelectPage::commitPage( CommitPageReason _eReason ) { sal_Bool bReturn = sal_False; - bool bNext = _eReason == CR_TRAVEL_NEXT; - if(bNext || _eReason == CR_VALIDATE ) + bool bNext = _eReason == eTravelForward; + if(bNext || _eReason == eValidate ) { ::rtl::OUString sReloadDocument; bReturn = m_aCurrentDocRB.IsChecked() || |