mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
refactor(video): simplifies retrieval of primary screen
This commit reduces primary screen retrieval to a single static field access as opposed to obtaining a runtime instance of the QApplication object
This commit is contained in:
parent
20a61e4cc3
commit
00947bc7ad
@ -133,7 +133,7 @@ CameraDevice* CameraDevice::open(QString devName, VideoMode mode)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
QScreen* defaultScreen = static_cast<QGuiApplication*>(QGuiApplication::instance())->primaryScreen();
|
QScreen* defaultScreen = QApplication::primaryScreen();
|
||||||
qreal pixRatio;
|
qreal pixRatio;
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 5, 0))
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 5, 0))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user