aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
diff options
context:
space:
mode:
authorRevolution2010-01-08 12:44:26 -0600
committerMelanie2010-01-08 18:27:49 +0000
commitc76c80a28aabeb1cb0556ea2ebd89f6241bb7026 (patch)
tree61412a26d851a25de3ce0341e9c36ade051e3d40 /OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
parentFix repeated ArgumentOutOfRangeException when a local OpenSim console is resi... (diff)
downloadopensim-SC_OLD-c76c80a28aabeb1cb0556ea2ebd89f6241bb7026.zip
opensim-SC_OLD-c76c80a28aabeb1cb0556ea2ebd89f6241bb7026.tar.gz
opensim-SC_OLD-c76c80a28aabeb1cb0556ea2ebd89f6241bb7026.tar.bz2
opensim-SC_OLD-c76c80a28aabeb1cb0556ea2ebd89f6241bb7026.tar.xz
Adds IClientAPI voids for GroupProposals.
Signed-off-by: Melanie <melanie@t-data.com>
Diffstat (limited to 'OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs')
-rw-r--r--OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
index 10b352f..55bbed9 100644
--- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
+++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
@@ -1657,7 +1657,15 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
1657 } 1657 }
1658 1658
1659 public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) 1659 public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt)
1660 { 1660 {
1661 }
1662
1663 public void SendGroupVoteHistory(UUID groupID, UUID transactionID, GroupVoteHistory[] Votes)
1664 {
1665 }
1666
1667 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals)
1668 {
1661 } 1669 }
1662 } 1670 }
1663} 1671}