INTEGRATION: CWS eformspp1 (1.4.2); FILE MERGED

2005/10/17 18:27:24 lo 1.4.2.4: RESYNC: (1.6-1.7); FILE MERGED
2005/08/19 10:50:45 fs 1.4.2.3: re-enable the original fix for #i36765# (was commented out)
2005/07/22 13:17:42 lo 1.4.2.2: RESYNC: (1.4-1.6); FILE MERGED
2005/04/28 11:38:24 dvo 1.4.2.1: #i36765# issue warning when attempting to submit invalid data
Issue number:
Submitted by:
Reviewed by:
This commit is contained in:
Rüdiger Timm 2005-10-24 06:38:05 +00:00
parent 30a7c794dc
commit 17f717dc7b

View file

@ -4,9 +4,9 @@
*
* $RCSfile: submission.cxx,v $
*
* $Revision: 1.7 $
* $Revision: 1.8 $
*
* last change: $Author: rt $ $Date: 2005-09-08 23:21:33 $
* last change: $Author: rt $ $Date: 2005-10-24 07:38:05 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -532,10 +532,7 @@ void SAL_CALL Submission::submitWithInteraction(
Model* pModel = Model::getModel( xModel );
OSL_ENSURE( pModel != NULL, "illegal model?" );
// #i36765# #i47248# warning on submission of illegal data. Removed for
// upcoming 2.0 release because string change could not go through
// translation anymore. Please re-enable in the next version.
/*
// #i36765# #i47248# warning on submission of illegal data
// check for validity (and query user if invalid)
bool bValid = pModel->isValid();
if( ! bValid )
@ -575,7 +572,6 @@ void SAL_CALL Submission::submitWithInteraction(
if( ! bValid )
throw aInvalidDataException;
}
*/
// attempt submission
bool bResult = false;