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/Manager/PhysicsActor.cs | |
parent | update README.txt to have current version requirements, also used as a (diff) | |
download | opensim-SC-b378bd33ad772f8c9c3a23ec1b83e168dd748c09.zip opensim-SC-b378bd33ad772f8c9c3a23ec1b83e168dd748c09.tar.gz opensim-SC-b378bd33ad772f8c9c3a23ec1b83e168dd748c09.tar.bz2 opensim-SC-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/Manager/PhysicsActor.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsActor.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs index 3ba5ce5..e7aa9d1 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs | |||
@@ -127,8 +127,8 @@ namespace OpenSim.Region.Physics.Manager | |||
127 | 127 | ||
128 | public abstract bool Selected { set; } | 128 | public abstract bool Selected { set; } |
129 | 129 | ||
130 | public String SOPName { get; set; } | 130 | public virtual String SOPName { get { return String.Empty; } set { return; } } |
131 | public String SOPDescription { get; set; } | 131 | public virtual String SOPDescription { get { return String.Empty; } set { return; } } |
132 | 132 | ||
133 | public abstract void CrossingFailure(); | 133 | public abstract void CrossingFailure(); |
134 | 134 | ||