summaryrefslogtreecommitdiff
path: root/indra/llwebrtc/llwebrtc.h
diff options
context:
space:
mode:
authorRoxanne Skelly <roxie@lindenlab.com>2024-03-15 11:12:41 -0700
committerGitHub <noreply@github.com>2024-03-15 11:12:41 -0700
commit23ecf64b248adafabdf391599f2c84418acbc954 (patch)
tree5ebe56c1b899ce0768dd2c7320fcb7e579ec7ec8 /indra/llwebrtc/llwebrtc.h
parentb32364ba49ab58656fc6b146e5db499022dc9512 (diff)
parentdbbbbc55af5c1b5e81e7a493a9b5fe5718f15c07 (diff)
Merge pull request #118 from secondlife/roxie/webrtc-voice
Various WebRTC Fixes and Improvements
Diffstat (limited to 'indra/llwebrtc/llwebrtc.h')
-rw-r--r--indra/llwebrtc/llwebrtc.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/llwebrtc/llwebrtc.h b/indra/llwebrtc/llwebrtc.h
index 43b48e79ab..dab7774499 100644
--- a/indra/llwebrtc/llwebrtc.h
+++ b/indra/llwebrtc/llwebrtc.h
@@ -74,12 +74,10 @@ class LLWebRTCVoiceDevice
public:
std::string mDisplayName; // friendly name for user interface purposes
std::string mID; // internal value for selection
- bool mCurrent; // current device
- LLWebRTCVoiceDevice(const std::string &display_name, const std::string &id, bool current) :
+ LLWebRTCVoiceDevice(const std::string &display_name, const std::string &id) :
mDisplayName(display_name),
- mID(id),
- mCurrent(current)
+ mID(id)
{};
};