diff options
author | Sean Dague | 2008-09-04 15:49:24 +0000 |
---|---|---|
committer | Sean Dague | 2008-09-04 15:49:24 +0000 |
commit | d8c9e3a7a345f88e7aa6a51eabe62d437214b94e (patch) | |
tree | 54d2bcd155fcde3c3f0794a35266000f50d18862 /OpenSim/Region/Environment/Modules/ContentManagementSystem | |
parent | minor fixes (diff) | |
download | opensim-SC_OLD-d8c9e3a7a345f88e7aa6a51eabe62d437214b94e.zip opensim-SC_OLD-d8c9e3a7a345f88e7aa6a51eabe62d437214b94e.tar.gz opensim-SC_OLD-d8c9e3a7a345f88e7aa6a51eabe62d437214b94e.tar.bz2 opensim-SC_OLD-d8c9e3a7a345f88e7aa6a51eabe62d437214b94e.tar.xz |
fix some indenting
Diffstat (limited to 'OpenSim/Region/Environment/Modules/ContentManagementSystem')
-rw-r--r-- | OpenSim/Region/Environment/Modules/ContentManagementSystem/CMController.cs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/OpenSim/Region/Environment/Modules/ContentManagementSystem/CMController.cs b/OpenSim/Region/Environment/Modules/ContentManagementSystem/CMController.cs index 30e532c..c5c1600 100644 --- a/OpenSim/Region/Environment/Modules/ContentManagementSystem/CMController.cs +++ b/OpenSim/Region/Environment/Modules/ContentManagementSystem/CMController.cs | |||
@@ -410,29 +410,29 @@ namespace OpenSim.Region.Environment.Modules.ContentManagement | |||
410 | foreach(Object sceneobj in m_sceneList.Values) | 410 | foreach(Object sceneobj in m_sceneList.Values) |
411 | { | 411 | { |
412 | ScenePresence presence = ((Scene)sceneobj).GetScenePresence(clientUUID); | 412 | ScenePresence presence = ((Scene)sceneobj).GetScenePresence(clientUUID); |
413 | if (presence != null) | 413 | if (presence != null) |
414 | { | 414 | { |
415 | IClientAPI client = presence.ControllingClient; | 415 | IClientAPI client = presence.ControllingClient; |
416 | m_log.Debug("[CONTENT MANAGEMENT] Unregistering channel with chat services."); | 416 | m_log.Debug("[CONTENT MANAGEMENT] Unregistering channel with chat services."); |
417 | client.OnChatFromViewer -= SimChatSent; | 417 | client.OnChatFromViewer -= SimChatSent; |
418 | 418 | ||
419 | m_log.Debug("[CONTENT MANAGEMENT] Removing handlers to client"); | 419 | m_log.Debug("[CONTENT MANAGEMENT] Removing handlers to client"); |
420 | client.OnUpdatePrimScale -= UpdateSingleScale; | 420 | client.OnUpdatePrimScale -= UpdateSingleScale; |
421 | client.OnUpdatePrimGroupScale -= UpdateMultipleScale; | 421 | client.OnUpdatePrimGroupScale -= UpdateMultipleScale; |
422 | client.OnUpdatePrimGroupPosition -= UpdateMultiplePosition; | 422 | client.OnUpdatePrimGroupPosition -= UpdateMultiplePosition; |
423 | client.OnUpdatePrimSinglePosition -= UpdateSinglePosition; | 423 | client.OnUpdatePrimSinglePosition -= UpdateSinglePosition; |
424 | client.OnUpdatePrimGroupRotation -= UpdateMultipleRotation; | 424 | client.OnUpdatePrimGroupRotation -= UpdateMultipleRotation; |
425 | client.OnUpdatePrimSingleRotation -= UpdateSingleRotation; | 425 | client.OnUpdatePrimSingleRotation -= UpdateSingleRotation; |
426 | client.OnAddPrim -= UpdateNewParts; | 426 | client.OnAddPrim -= UpdateNewParts; |
427 | client.OnObjectDuplicate -= ObjectDuplicated; | 427 | client.OnObjectDuplicate -= ObjectDuplicated; |
428 | client.OnObjectDuplicateOnRay -= ObjectDuplicatedOnRay; | 428 | client.OnObjectDuplicateOnRay -= ObjectDuplicatedOnRay; |
429 | client.OnUndo -= OnUnDid; | 429 | client.OnUndo -= OnUnDid; |
430 | //client.OnUpdatePrimGroupMouseRotation += m_innerScene.UpdatePrimRotation; | 430 | //client.OnUpdatePrimGroupMouseRotation += m_innerScene.UpdatePrimRotation; |
431 | return; | 431 | return; |
432 | } | 432 | } |
433 | } | 433 | } |
434 | } | 434 | } |
435 | 435 | ||
436 | protected void UpdateMultiplePosition(uint localID, LLVector3 pos, IClientAPI remoteClient) | 436 | protected void UpdateMultiplePosition(uint localID, LLVector3 pos, IClientAPI remoteClient) |
437 | { | 437 | { |
438 | Work moreWork = new Work(); | 438 | Work moreWork = new Work(); |