mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix Qt4 build
Strangely no problems on Qt5 without those declarations. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
b2f473d927
commit
e4a88db7dc
1 changed files with 7 additions and 0 deletions
|
|
@ -102,6 +102,13 @@ class UserSurveyServices : public WebServices {
|
||||||
public:
|
public:
|
||||||
void sendSurvey(QString values);
|
void sendSurvey(QString values);
|
||||||
explicit UserSurveyServices(QWidget *parent = 0, Qt::WindowFlags f = 0);
|
explicit UserSurveyServices(QWidget *parent = 0, Qt::WindowFlags f = 0);
|
||||||
|
private
|
||||||
|
slots:
|
||||||
|
// need to declare them as no ops or Qt4 is unhappy
|
||||||
|
virtual void startDownload() { }
|
||||||
|
virtual void startUpload() { }
|
||||||
|
virtual void buttonClicked(QAbstractButton *button) { }
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue