diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-06-30 14:05:02 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-30 14:05:02 -0700 |
commit | e4a88db7dc197eee3a7f63ba1fc725c10a195073 (patch) | |
tree | 426e5e3f37bbb70f810e71490920a3b636df7d8e /qt-ui/subsurfacewebservices.h | |
parent | b2f473d927bdc42129f673a0ee2f5ab65bb57f2e (diff) | |
download | subsurface-e4a88db7dc197eee3a7f63ba1fc725c10a195073.tar.gz |
Fix Qt4 build
Strangely no problems on Qt5 without those declarations.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/subsurfacewebservices.h')
-rw-r--r-- | qt-ui/subsurfacewebservices.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qt-ui/subsurfacewebservices.h b/qt-ui/subsurfacewebservices.h index 9c13e21df..f2138ac6f 100644 --- a/qt-ui/subsurfacewebservices.h +++ b/qt-ui/subsurfacewebservices.h @@ -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 |