diff options
author | Spp <none@none> | 2010-04-07 22:59:46 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-07 22:59:46 +0200 |
commit | 49d05ba9aa1cd5c1f3ae96546283e6d03a037ff7 (patch) | |
tree | f7e6135573366a686c1f527e16a0a7d42a7877ff /src/game/VoiceChatHandler.cpp | |
parent | d19e12708001fbef2308be0e8cb5375a2ac7af48 (diff) |
Code style (game + scripts only):
"( " --> "("
" )" --> ")"
--HG--
branch : trunk
Diffstat (limited to 'src/game/VoiceChatHandler.cpp')
-rw-r--r-- | src/game/VoiceChatHandler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/VoiceChatHandler.cpp b/src/game/VoiceChatHandler.cpp index 6daa27f13e6..78aafe1999b 100644 --- a/src/game/VoiceChatHandler.cpp +++ b/src/game/VoiceChatHandler.cpp @@ -24,7 +24,7 @@ #include "Opcodes.h" #include "Log.h" -void WorldSession::HandleVoiceSessionEnableOpcode( WorldPacket & recv_data ) +void WorldSession::HandleVoiceSessionEnableOpcode(WorldPacket & recv_data) { sLog.outDebug("WORLD: CMSG_VOICE_SESSION_ENABLE"); // uint8 isVoiceEnabled, uint8 isMicrophoneEnabled @@ -33,14 +33,14 @@ void WorldSession::HandleVoiceSessionEnableOpcode( WorldPacket & recv_data ) recv_data.hexlike(); } -void WorldSession::HandleChannelVoiceOnOpcode( WorldPacket & recv_data ) +void WorldSession::HandleChannelVoiceOnOpcode(WorldPacket & recv_data) { sLog.outDebug("WORLD: CMSG_CHANNEL_VOICE_ON"); // Enable Voice button in channel context menu recv_data.hexlike(); } -void WorldSession::HandleSetActiveVoiceChannel( WorldPacket & recv_data ) +void WorldSession::HandleSetActiveVoiceChannel(WorldPacket & recv_data) { sLog.outDebug("WORLD: CMSG_SET_ACTIVE_VOICE_CHANNEL"); recv_data.read_skip<uint32>(); |