mirror of
https://github.com/leozide/leocad
synced 2025-01-17 18:11:42 +01:00
Fixed Windows compiler error.
This commit is contained in:
parent
a3995efa36
commit
959dcca186
2 changed files with 4 additions and 0 deletions
|
@ -221,10 +221,12 @@ void lcSetsDatabaseDialog::on_SearchButton_clicked()
|
|||
}
|
||||
}
|
||||
|
||||
#ifndef Q_OS_WIN
|
||||
void lcSetsDatabaseDialog::DownloadFinished(QNetworkReply* Reply)
|
||||
{
|
||||
ProcessReply(Reply);
|
||||
}
|
||||
#endif
|
||||
|
||||
void lcSetsDatabaseDialog::ProcessReply(lcHttpReply* Reply)
|
||||
{
|
||||
|
|
|
@ -68,7 +68,9 @@ public:
|
|||
virtual bool eventFilter(QObject* Object, QEvent* Event) override;
|
||||
|
||||
public slots:
|
||||
#ifndef Q_OS_WIN
|
||||
void DownloadFinished(QNetworkReply* Reply);
|
||||
#endif
|
||||
void on_SearchButton_clicked();
|
||||
void accept() override;
|
||||
void Finished(int Result);
|
||||
|
|
Loading…
Reference in a new issue