Skip to content
Snippets Groups Projects
Commit bad6a923 authored by Emmanuel Lepage Vallee's avatar Emmanuel Lepage Vallee
Browse files

qtwrapper: Fix unused arguments warnings

Refs #69979
parent 7cf6d47a
Branches
No related tags found
No related merge requests found
......@@ -189,6 +189,7 @@ void VideoRendererManager::setBufferSize(uint size)
///A video is not being rendered
void VideoRendererManagerPrivate::startedDecoding(const QString& id, const QString& shmPath, int width, int height)
{
Q_UNUSED(shmPath) //When directly linked, there is no SHM
const QSize res = QSize(width,height);
const QByteArray rid = id.toLatin1();
......
......@@ -47,10 +47,15 @@ public:
public Q_SLOTS: // METHODS
void Register(int pid, const QString &name)
{}
{
Q_UNUSED(pid ) //When directly linked, the PID is always the current process PID
Q_UNUSED(name)
}
void Unregister(int pid)
{}
{
Q_UNUSED(pid) //When directly linked, the PID is always the current process PID
}
bool isConnected();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment