aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime
diff options
context:
space:
mode:
authorMelanie2009-08-31 11:58:49 +0100
committerMelanie2009-08-31 11:58:49 +0100
commit9e6684661ad0f65e2b9e87e44a03b858eea011ec (patch)
tree0828d50bfc7dde7966b05fd9501e57d634c1094a /OpenSim/Region/ScriptEngine/Shared/Api/Runtime
parentChange the return value if the compiler to "object" to allow compilers (diff)
parentoops. fixing missing argument. (diff)
downloadopensim-SC_OLD-9e6684661ad0f65e2b9e87e44a03b858eea011ec.zip
opensim-SC_OLD-9e6684661ad0f65e2b9e87e44a03b858eea011ec.tar.gz
opensim-SC_OLD-9e6684661ad0f65e2b9e87e44a03b858eea011ec.tar.bz2
opensim-SC_OLD-9e6684661ad0f65e2b9e87e44a03b858eea011ec.tar.xz
Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
index 45492dd..8f52d99 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
@@ -282,6 +282,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
282 return m_OSSL_Functions.osSetFontSize(drawList, fontSize); 282 return m_OSSL_Functions.osSetFontSize(drawList, fontSize);
283 } 283 }
284 284
285 public string osSetFontName(string drawList, string fontName)
286 {
287 return m_OSSL_Functions.osSetFontName(drawList, fontName);
288 }
289
285 public string osSetPenSize(string drawList, int penSize) 290 public string osSetPenSize(string drawList, int penSize)
286 { 291 {
287 return m_OSSL_Functions.osSetPenSize(drawList, penSize); 292 return m_OSSL_Functions.osSetPenSize(drawList, penSize);