Class.h (hack_signers): Renamed signers to hack_signers.
2003-12-03 Michael Koch <konqueror@gmx.de> * java/lang/Class.h (hack_signers): Renamed signers to hack_signers. * java/lang/natClass.cc (getSigners): Likewise. (setSigners): Likewise. From-SVN: r74247
This commit is contained in:
parent
02972627ab
commit
b7e0ff4538
@ -1,3 +1,9 @@
|
|||||||
|
2003-12-03 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
|
* java/lang/Class.h (hack_signers): Renamed signers to hack_signers.
|
||||||
|
* java/lang/natClass.cc (getSigners): Likewise.
|
||||||
|
(setSigners): Likewise.
|
||||||
|
|
||||||
2003-12-02 Mohan Embar <gnustuff@thisiscool.com>
|
2003-12-02 Mohan Embar <gnustuff@thisiscool.com>
|
||||||
|
|
||||||
* configure.in: Added new MinGW-specific configure flag
|
* configure.in: Added new MinGW-specific configure flag
|
||||||
|
@ -446,7 +446,7 @@ private:
|
|||||||
// Security Domain to which this class belongs (or null).
|
// Security Domain to which this class belongs (or null).
|
||||||
java::security::ProtectionDomain *protectionDomain;
|
java::security::ProtectionDomain *protectionDomain;
|
||||||
// Signers of this class (or null).
|
// Signers of this class (or null).
|
||||||
JArray<jobject> *signers;
|
JArray<jobject> *hack_signers;
|
||||||
// Used by Jv_PopClass and _Jv_PushClass to communicate with StackTrace.
|
// Used by Jv_PopClass and _Jv_PushClass to communicate with StackTrace.
|
||||||
jclass chain;
|
jclass chain;
|
||||||
};
|
};
|
||||||
|
@ -1502,13 +1502,13 @@ java::lang::Class::getProtectionDomain0 ()
|
|||||||
JArray<jobject> *
|
JArray<jobject> *
|
||||||
java::lang::Class::getSigners()
|
java::lang::Class::getSigners()
|
||||||
{
|
{
|
||||||
return signers;
|
return hack_signers;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
java::lang::Class::setSigners(JArray<jobject> *s)
|
java::lang::Class::setSigners(JArray<jobject> *s)
|
||||||
{
|
{
|
||||||
signers = s;
|
hack_signers = s;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Functions for indirect dispatch (symbolic virtual binding) support.
|
// Functions for indirect dispatch (symbolic virtual binding) support.
|
||||||
|
Loading…
Reference in New Issue
Block a user