2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-04 08:25:38 +00:00

Remove socket errors from Qt adapters

This commit is contained in:
Ilya Fedin
2023-01-06 14:20:26 +04:00
committed by John Preston
parent ce37c6ef08
commit 6288da2f3d
5 changed files with 7 additions and 12 deletions

View File

@@ -25,7 +25,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "base/invoke_queued.h"
#include "base/qthelp_url.h"
#include "base/qthelp_regex.h"
#include "base/qt/qt_common_adapters.h"
#include "ui/ui_utility.h"
#include "ui/effects/animations.h"
@@ -135,7 +134,7 @@ int Sandbox::start() {
[=] { socketDisconnected(); });
connect(
&_localSocket,
base::QLocalSocket_error,
&QLocalSocket::errorOccurred,
[=](QLocalSocket::LocalSocketError error) { socketError(error); });
connect(
&_localSocket,