diff options
author | Teravus Ovares | 2008-12-27 00:17:08 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-12-27 00:17:08 +0000 |
commit | b378bd33ad772f8c9c3a23ec1b83e168dd748c09 (patch) | |
tree | 3eed0b3906d642b3b5f7ac445558ade068c7a5e0 /OpenSim/Region/Physics/OdePlugin | |
parent | update README.txt to have current version requirements, also used as a (diff) | |
download | opensim-SC_OLD-b378bd33ad772f8c9c3a23ec1b83e168dd748c09.zip opensim-SC_OLD-b378bd33ad772f8c9c3a23ec1b83e168dd748c09.tar.gz opensim-SC_OLD-b378bd33ad772f8c9c3a23ec1b83e168dd748c09.tar.bz2 opensim-SC_OLD-b378bd33ad772f8c9c3a23ec1b83e168dd748c09.tar.xz |
* Fixes mantis #2922
* Converts some C# 3.0 syntax into it's 2.0 equivalent so that Visual Studio 2005 can compile it successfully.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs b/OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs index 754ca2b..cfabeee 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs | |||
@@ -44,6 +44,6 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
44 | return (jointID != IntPtr.Zero); | 44 | return (jointID != IntPtr.Zero); |
45 | } | 45 | } |
46 | } | 46 | } |
47 | public IntPtr jointID { get; set; } | 47 | public virtual IntPtr jointID { get { return IntPtr.Zero; } set { return; } } |
48 | } | 48 | } |
49 | } | 49 | } |