mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
VOIP: Fixed some compiler warnings and removed unnecessary translations.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5622 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
b6bd1e9f8e
commit
9aa6478910
@ -10,9 +10,6 @@
|
|||||||
<height>378</height>
|
<height>378</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
|
||||||
<string>Form</string>
|
|
||||||
</property>
|
|
||||||
<layout class="QVBoxLayout" name="qwVadLayout">
|
<layout class="QVBoxLayout" name="qwVadLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="qpbAudioWizard">
|
<widget class="QPushButton" name="qpbAudioWizard">
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
#include "interface/rsvoip.h"
|
#include "interface/rsvoip.h"
|
||||||
|
|
||||||
AudioPopupChatDialog::AudioPopupChatDialog(QWidget *parent)
|
AudioPopupChatDialog::AudioPopupChatDialog(QWidget *parent)
|
||||||
|
: PopupChatDialog(parent)
|
||||||
{
|
{
|
||||||
audioListenToggleButton = new QPushButton ;
|
audioListenToggleButton = new QPushButton ;
|
||||||
audioListenToggleButton->setMinimumSize(QSize(28,28)) ;
|
audioListenToggleButton->setMinimumSize(QSize(28,28)) ;
|
||||||
|
@ -188,7 +188,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_2">
|
<widget class="QLabel" name="label_2">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>todo shortcut</string>
|
<string notr="true">todo shortcut</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -6,17 +6,17 @@
|
|||||||
#include <gui/chat/ChatDialog.h>
|
#include <gui/chat/ChatDialog.h>
|
||||||
#include <gui/AudioPopupChatDialog.h>
|
#include <gui/AudioPopupChatDialog.h>
|
||||||
|
|
||||||
void PluginGUIHandler::ReceivedInvitation(const QString& peer_id)
|
void PluginGUIHandler::ReceivedInvitation(const QString& /*peer_id*/)
|
||||||
{
|
{
|
||||||
std::cerr << "****** Plugin GUI handler: received Invitation!" << std::endl;
|
std::cerr << "****** Plugin GUI handler: received Invitation!" << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PluginGUIHandler::ReceivedVoipHangUp(const QString& peer_id)
|
void PluginGUIHandler::ReceivedVoipHangUp(const QString& /*peer_id*/)
|
||||||
{
|
{
|
||||||
std::cerr << "****** Plugin GUI handler: received HangUp!" << std::endl;
|
std::cerr << "****** Plugin GUI handler: received HangUp!" << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PluginGUIHandler::ReceivedVoipAccept(const QString& peer_id)
|
void PluginGUIHandler::ReceivedVoipAccept(const QString& /*peer_id*/)
|
||||||
{
|
{
|
||||||
std::cerr << "****** Plugin GUI handler: received VoipAccept!" << std::endl;
|
std::cerr << "****** Plugin GUI handler: received VoipAccept!" << std::endl;
|
||||||
}
|
}
|
||||||
|
@ -431,7 +431,7 @@ bool SpeexOutputProcessor::isSequential() const {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SpeexOutputProcessor::speex_jitter_init(SpeexJitter *jit, void *decoder, int sampling_rate)
|
void SpeexOutputProcessor::speex_jitter_init(SpeexJitter *jit, void *decoder, int /*sampling_rate*/)
|
||||||
{
|
{
|
||||||
jit->dec = decoder;
|
jit->dec = decoder;
|
||||||
speex_decoder_ctl(decoder, SPEEX_GET_FRAME_SIZE, &jit->frame_size);
|
speex_decoder_ctl(decoder, SPEEX_GET_FRAME_SIZE, &jit->frame_size);
|
||||||
|
@ -13,10 +13,6 @@
|
|||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>VoipTest Statistics</string>
|
<string>VoipTest Statistics</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowIcon">
|
|
||||||
<iconset resource="images.qrc">
|
|
||||||
<normaloff>:/images/rstray3.png</normaloff>:/images/rstray3.png</iconset>
|
|
||||||
</property>
|
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<widget class="QSplitter" name="splitter">
|
<widget class="QSplitter" name="splitter">
|
||||||
@ -48,8 +44,6 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<resources>
|
<resources/>
|
||||||
<include location="images.qrc"/>
|
|
||||||
</resources>
|
|
||||||
<connections/>
|
<connections/>
|
||||||
</ui>
|
</ui>
|
||||||
|
Loading…
Reference in New Issue
Block a user