mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-18 23:27:09 +02:00
Removed unused variables from LastCrashedWindow.
This commit is contained in:
parent
3df1a73cf5
commit
115dc460ac
2 changed files with 1 additions and 7 deletions
|
@ -230,7 +230,6 @@ LastCrashedWindow::LastCrashedWindow(
|
|||
const QByteArray &crashdump,
|
||||
Fn<void()> launch)
|
||||
: _dumpraw(crashdump)
|
||||
, _port(kDefaultProxyPort)
|
||||
, _label(this)
|
||||
, _pleaseSendReport(this)
|
||||
, _yourReportName(this)
|
||||
|
@ -859,7 +858,7 @@ void LastCrashedWindow::networkSettings() {
|
|||
const auto box = new NetworkSettingsWindow(
|
||||
this,
|
||||
proxy.host,
|
||||
proxy.port ? proxy.port : 80,
|
||||
proxy.port ? proxy.port : kDefaultProxyPort,
|
||||
proxy.user,
|
||||
proxy.password);
|
||||
box->saveRequests(
|
||||
|
|
|
@ -135,9 +135,6 @@ private:
|
|||
|
||||
QByteArray _dumpraw;
|
||||
|
||||
QString _host, _username, _password;
|
||||
quint32 _port;
|
||||
|
||||
PreLaunchLabel _label, _pleaseSendReport, _yourReportName, _minidump;
|
||||
PreLaunchLog _report;
|
||||
PreLaunchButton _send, _sendSkip, _networkSettings, _continue, _showReport, _saveReport, _getApp;
|
||||
|
@ -164,8 +161,6 @@ private:
|
|||
SendingState _sendingState;
|
||||
|
||||
PreLaunchLabel _updating;
|
||||
qint64 _sendingProgress = 0;
|
||||
qint64 _sendingTotal = 0;
|
||||
|
||||
QNetworkAccessManager _sendManager;
|
||||
QNetworkReply *_checkReply = nullptr;
|
||||
|
|
Loading…
Add table
Reference in a new issue