From df322d320363737ca42c10641083c93f2d957172 Mon Sep 17 00:00:00 2001 From: Tristan Matthews <tristan.matthews@savoirfairelinux.com> Date: Tue, 28 Feb 2012 15:36:20 -0500 Subject: [PATCH] * #8968: recordable: removed unused getRecFileId --- daemon/src/audio/recordable.h | 6 ------ daemon/src/call.h | 4 ---- daemon/src/conference.cpp | 4 ---- daemon/src/conference.h | 5 ----- 4 files changed, 19 deletions(-) diff --git a/daemon/src/audio/recordable.h b/daemon/src/audio/recordable.h index dfac994b26..07aeb22919 100644 --- a/daemon/src/audio/recordable.h +++ b/daemon/src/audio/recordable.h @@ -75,12 +75,6 @@ class Recordable { */ void setRecordingSmplRate(int smplRate); - /** - * Virtual method to be implemented in order to the main - * buffer to retrieve the recorded id. - */ - virtual std::string getRecFileId() const = 0; - protected: AudioRecord recAudio_; AudioRecorder recorder_; diff --git a/daemon/src/call.h b/daemon/src/call.h index 784acd9e7d..da702a7e31 100644 --- a/daemon/src/call.h +++ b/daemon/src/call.h @@ -202,10 +202,6 @@ class Call : public Recordable { */ unsigned int getLocalAudioPort(); - std::string getRecFileId() const { - return getDisplayName(); - } - void time_stop(); std::map<std::string, std::string> createHistoryEntry() const; virtual bool setRecording(); diff --git a/daemon/src/conference.cpp b/daemon/src/conference.cpp index d40da64e58..a44d8d91e9 100644 --- a/daemon/src/conference.cpp +++ b/daemon/src/conference.cpp @@ -126,10 +126,6 @@ bool Conference::setRecording() return recordStatus; } -std::string Conference::getRecFileId() const { - return getConfID(); -} - std::string Conference::getConfID() const { return id_; } diff --git a/daemon/src/conference.h b/daemon/src/conference.h index 4ce74de722..56ba840dde 100644 --- a/daemon/src/conference.h +++ b/daemon/src/conference.h @@ -86,11 +86,6 @@ class Conference : public Recordable { */ ParticipantSet getParticipantList() const; - /** - * Get recording file ID - */ - std::string getRecFileId() const; - /** * Start/stop recording toggle */ -- GitLab