diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Client/MXP/ClientStack/MXPClientView.cs | 3 | ||||
-rw-r--r-- | OpenSim/Client/MXP/MXPModule.cs | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs index 204603d..0cae3dd 100644 --- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs +++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs | |||
@@ -676,6 +676,7 @@ namespace OpenSim.Client.MXP.ClientStack | |||
676 | public event FriendActionDelegate OnApproveFriendRequest; | 676 | public event FriendActionDelegate OnApproveFriendRequest; |
677 | public event FriendActionDelegate OnDenyFriendRequest; | 677 | public event FriendActionDelegate OnDenyFriendRequest; |
678 | public event FriendshipTermination OnTerminateFriendship; | 678 | public event FriendshipTermination OnTerminateFriendship; |
679 | public event GrantUserFriendRights OnGrantUserRights; | ||
679 | public event MoneyTransferRequest OnMoneyTransferRequest; | 680 | public event MoneyTransferRequest OnMoneyTransferRequest; |
680 | public event EconomyDataRequest OnEconomyDataRequest; | 681 | public event EconomyDataRequest OnEconomyDataRequest; |
681 | public event MoneyBalanceRequest OnMoneyBalanceRequest; | 682 | public event MoneyBalanceRequest OnMoneyBalanceRequest; |
@@ -1052,7 +1053,7 @@ namespace OpenSim.Client.MXP.ClientStack | |||
1052 | { | 1053 | { |
1053 | } | 1054 | } |
1054 | 1055 | ||
1055 | public void SendInventoryFolderDetails(UUID ownerID, UUID folderID, List<InventoryItemBase> items, List<InventoryFolderBase> folders, bool fetchFolders, bool fetchItems) | 1056 | public void SendInventoryFolderDetails(UUID ownerID, UUID folderID, List<InventoryItemBase> items, List<InventoryFolderBase> folders, int version, bool fetchFolders, bool fetchItems) |
1056 | { | 1057 | { |
1057 | // Need to translate to MXP somehow | 1058 | // Need to translate to MXP somehow |
1058 | } | 1059 | } |
diff --git a/OpenSim/Client/MXP/MXPModule.cs b/OpenSim/Client/MXP/MXPModule.cs index a6b0396..0b442cc 100644 --- a/OpenSim/Client/MXP/MXPModule.cs +++ b/OpenSim/Client/MXP/MXPModule.cs | |||
@@ -110,8 +110,11 @@ namespace OpenSim.Client.MXP | |||
110 | public void Close() | 110 | public void Close() |
111 | { | 111 | { |
112 | m_shutdown = true; | 112 | m_shutdown = true; |
113 | lock (m_ticker) | 113 | if (m_ticker != null) |
114 | m_ticker.Stop(); | 114 | { |
115 | lock (m_ticker) | ||
116 | m_ticker.Stop(); | ||
117 | } | ||
115 | } | 118 | } |
116 | 119 | ||
117 | public string Name | 120 | public string Name |