User: hr Date: 2007-09-26 14:29:53+0000 Modified: dba/connectivity/source/drivers/jdbc/SQLException.cxx
Log: INTEGRATION: CWS dba24a (1.11.118); FILE MERGED 2007/08/22 05:55:00 fs 1.11.118.1: proper method signature in getNextException File Changes: Directory: /dba/connectivity/source/drivers/jdbc/ ================================================= File [changed]: SQLException.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/SQLException.cxx?r1=1.11&r2=1.12 Delta lines: +2 -2 ------------------- --- SQLException.cxx 2006-09-17 02:49:02+0000 1.11 +++ SQLException.cxx 2007-09-26 14:29:50+0000 1.12 @@ -107,12 +107,12 @@ if( t.pEnv ){ // temporaere Variable initialisieren - static const char * cSignature = "()Ljava/sql/Exception;"; + static const char * cSignature = "()Ljava/sql/SQLException;"; static const char * cMethodName = "getNextException"; // Java-Call absetzen static jmethodID mID = NULL; if ( !mID ) - mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature ); + mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!"); if( mID ){ out = t.pEnv->CallObjectMethod( object, mID); ThrowSQLException(t.pEnv,0); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
