diff options
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llvoiceclient.h | 1 | ||||
-rw-r--r-- | indra/newview/llvoicevivox.cpp | 6 | ||||
-rw-r--r-- | indra/newview/llvoicevivox.h | 1 |
3 files changed, 0 insertions, 8 deletions
diff --git a/indra/newview/llvoiceclient.h b/indra/newview/llvoiceclient.h index 02c0ece427..7f8f979da0 100644 --- a/indra/newview/llvoiceclient.h +++ b/indra/newview/llvoiceclient.h @@ -312,7 +312,6 @@ public: virtual void stopPreviewBuffer() = 0; virtual bool isPreviewRecording() = 0; - virtual bool isPreviewReady() = 0; virtual bool isPreviewPlaying() = 0; //@} }; diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp index ba68795870..e00b94b421 100644 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -6789,12 +6789,6 @@ bool LLVivoxVoiceClient::isPreviewRecording() return (mCaptureBufferMode && mCaptureBufferRecording); } -bool LLVivoxVoiceClient::isPreviewReady() -{ - return (mCaptureBufferMode && mCaptureBufferRecorded); - -} - bool LLVivoxVoiceClient::isPreviewPlaying() { return (mCaptureBufferMode && mCaptureBufferPlaying); diff --git a/indra/newview/llvoicevivox.h b/indra/newview/llvoicevivox.h index 6a13bcddb3..f67798c207 100644 --- a/indra/newview/llvoicevivox.h +++ b/indra/newview/llvoicevivox.h @@ -263,7 +263,6 @@ public: virtual void stopPreviewBuffer(); virtual bool isPreviewRecording(); - virtual bool isPreviewReady(); virtual bool isPreviewPlaying(); //@} |