Remove unused signal in Platform

This commit is contained in:
Vlad Zahorodnii 2020-12-09 16:54:15 +02:00
parent 3cdc97a4e9
commit 94201cbadd
2 changed files with 0 additions and 5 deletions

View file

@ -498,10 +498,6 @@ Q_SIGNALS:
void screensQueried();
void initFailed();
void readyChanged(bool);
/**
* Emitted by backends using a one screen (nested window) approach and when the size of that changes.
*/
void screenSizeChanged();
void outputAdded(AbstractOutput *output);
void outputRemoved(AbstractOutput *output);

View file

@ -45,7 +45,6 @@ X11WindowedBackend::X11WindowedBackend(QObject *parent)
{
setSupportsPointerWarping(true);
setPerScreenRenderingEnabled(true);
connect(this, &X11WindowedBackend::sizeChanged, this, &X11WindowedBackend::screenSizeChanged);
}
X11WindowedBackend::~X11WindowedBackend()