From 3290cd09d3ecd45c52bd131ada2a793c48fd99dc Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Thu, 9 May 2013 18:12:17 +0100
Subject: remove pointless region handle paramter from
IClientAPI.SendKillObject()
---
OpenSim/Framework/IClientAPI.cs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
(limited to 'OpenSim/Framework')
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index cfb36fe..59ce2c4 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -1097,9 +1097,8 @@ namespace OpenSim.Framework
///
/// Tell the client that an object has been deleted
///
- ///
///
- void SendKillObject(ulong regionHandle, List localID);
+ void SendKillObject(List localID);
void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs);
void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args);
--
cgit v1.1
From ff0332730d54cf23c53795a9e6bac0262b6c86c3 Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Thu, 9 May 2013 23:11:37 +0100
Subject: Implement delete key for local console
---
OpenSim/Framework/Console/LocalConsole.cs | 15 +++++++++++++++
1 file changed, 15 insertions(+)
(limited to 'OpenSim/Framework')
diff --git a/OpenSim/Framework/Console/LocalConsole.cs b/OpenSim/Framework/Console/LocalConsole.cs
index d41481f..a967db6 100644
--- a/OpenSim/Framework/Console/LocalConsole.cs
+++ b/OpenSim/Framework/Console/LocalConsole.cs
@@ -426,6 +426,21 @@ namespace OpenSim.Framework.Console
System.Console.Write("{0}", prompt);
break;
+ case ConsoleKey.Delete:
+ if (m_cursorXPosition == m_commandLine.Length)
+ break;
+
+ m_commandLine.Remove(m_cursorXPosition, 1);
+
+ SetCursorLeft(0);
+ m_cursorYPosition = SetCursorTop(m_cursorYPosition);
+
+ if (m_echo)
+ System.Console.Write("{0}{1} ", prompt, m_commandLine);
+ else
+ System.Console.Write("{0}", prompt);
+
+ break;
case ConsoleKey.End:
m_cursorXPosition = m_commandLine.Length;
break;
--
cgit v1.1