summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/usersurvey.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-04-19 12:39:59 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-04-19 14:27:54 -0700
commitad66297cfd843199f39e3a231cb8311652ea183c (patch)
treefedc6cf6422fa120de30c570f3b9a7a1224242de /desktop-widgets/usersurvey.h
parent4fd4b75269469ee1029c51bdaf8275149d20a929 (diff)
downloadsubsurface-ad66297cfd843199f39e3a231cb8311652ea183c.tar.gz
desktop: remove user survey
We have never made good use of the results. Let's just remove it. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/usersurvey.h')
-rw-r--r--desktop-widgets/usersurvey.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/desktop-widgets/usersurvey.h b/desktop-widgets/usersurvey.h
deleted file mode 100644
index 32acfa87b..000000000
--- a/desktop-widgets/usersurvey.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-#ifndef USERSURVEY_H
-#define USERSURVEY_H
-
-#include <QDialog>
-class QNetworkAccessManager;
-class QNetworkReply;
-
-namespace Ui {
- class UserSurvey;
-}
-
-class UserSurvey : public QDialog {
- Q_OBJECT
-
-public:
- explicit UserSurvey(QWidget *parent = 0);
- ~UserSurvey();
- static QString getVersion();
-
-private
-slots:
- void on_buttonBox_accepted();
- void on_buttonBox_rejected();
- void requestReceived();
-
-private:
- Ui::UserSurvey *ui;
- QString os;
-};
-#endif // USERSURVEY_H