mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 06:15:26 +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:
|
||||
void sendSurvey(QString values);
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue