Tag: cws_src680_mozab05 User: windly Date: 05/01/31 23:32:46 Modified: /dba/connectivity/source/drivers/mozab/bootstrap/ MMozillaBootstrap.cxx, MNSRunnable.cxx
Log: #i20088# run should have a return value to give a chance to return some values File Changes: Directory: /dba/connectivity/source/drivers/mozab/bootstrap/ ============================================================ File [changed]: MMozillaBootstrap.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/mozab/bootstrap/MMozillaBootstrap.cxx?r1=1.1.2.5&r2=1.1.2.6 Delta lines: +4 -5 ------------------- --- MMozillaBootstrap.cxx 28 Jan 2005 07:21:41 -0000 1.1.2.5 +++ MMozillaBootstrap.cxx 1 Feb 2005 07:32:43 -0000 1.1.2.6 @@ -2,9 +2,9 @@ * * $RCSfile: MMozillaBootstrap.cxx,v $ * - * $Revision: 1.1.2.5 $ + * $Revision: 1.1.2.6 $ * - * last change: $Author: windly $ $Date: 2005/01/28 07:21:41 $ + * last change: $Author: windly $ $Date: 2005/02/01 07:32:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -228,8 +228,7 @@ && ( aCode->getProductType() != currProduct || !profileName.equals(currProfileName)) ) setCurrentProfile(aCode->getProductType(),profileName); MNSRunnable xRunnable; - xRunnable.StartProxy(aCode); - return 0; + return xRunnable.StartProxy(aCode);; } File [changed]: MNSRunnable.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/mozab/bootstrap/MNSRunnable.cxx?r1=1.1.2.2&r2=1.1.2.3 Delta lines: +3 -4 ------------------- --- MNSRunnable.cxx 28 Jan 2005 07:21:43 -0000 1.1.2.2 +++ MNSRunnable.cxx 1 Feb 2005 07:32:43 -0000 1.1.2.3 @@ -2,9 +2,9 @@ * * $RCSfile: MNSRunnable.cxx,v $ * - * $Revision: 1.1.2.2 $ + * $Revision: 1.1.2.3 $ * - * last change: $Author: windly $ $Date: 2005/01/28 07:21:43 $ + * last change: $Author: windly $ $Date: 2005/02/01 07:32:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -134,7 +134,6 @@ NS_IMETHODIMP MNSRunnable::Run() { - xCode->run(); - return 0; + return static_cast<nsresult>(xCode->run()); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
