Tag: cws_src680_dba24d User: fs Date: 2007-11-19 10:55:46+0000 Modified: dba/connectivity/source/commontools/dbtools.cxx
Log: copying the changes from CWS reportdesign01 herein File Changes: Directory: /dba/connectivity/source/commontools/ ================================================ File [changed]: dbtools.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/commontools/dbtools.cxx?r1=1.68.54.2&r2=1.68.54.3 Delta lines: +7 -3 ------------------- --- dbtools.cxx 2007-11-15 10:01:37+0000 1.68.54.2 +++ dbtools.cxx 2007-11-19 10:55:43+0000 1.68.54.3 @@ -4,9 +4,9 @@ * * $RCSfile: dbtools.cxx,v $ * - * $Revision: 1.68.54.2 $ + * $Revision: 1.68.54.3 $ * - * last change: $Author: fs $ $Date: 2007/11/15 10:01:37 $ + * last change: $Author: fs $ $Date: 2007/11/19 10:55:43 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1851,8 +1851,12 @@ _rxHandler->handle(xRequest); if (!pParams->wasSelected()) + { // canceled by the user (i.e. (s)he canceled the dialog) - throw RowSetVetoException(); + RowSetVetoException e; + e.ErrorCode = ParameterInteractionCancelled; + throw e; + } // now transfer the values from the continuation object to the parameter columns Sequence< PropertyValue > aFinalValues = pParams->getValues(); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
