aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-12-27 00:17:08 +0000
committerTeravus Ovares2008-12-27 00:17:08 +0000
commitb378bd33ad772f8c9c3a23ec1b83e168dd748c09 (patch)
tree3eed0b3906d642b3b5f7ac445558ade068c7a5e0 /OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs
parentupdate README.txt to have current version requirements, also used as a (diff)
downloadopensim-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 'OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/OdePhysicsJoint.cs2
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}