From f25a9bc103d101ea9d79fe159b83d88a4cc35f87 Mon Sep 17 00:00:00 2001 From: swirl Date: Wed, 29 Dec 2021 10:37:09 -0500 Subject: Completely remove Google Analytics library --- launcher/Application.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'launcher/Application.h') diff --git a/launcher/Application.h b/launcher/Application.h index 982e22e3..c1cd8224 100644 --- a/launcher/Application.h +++ b/launcher/Application.h @@ -33,7 +33,6 @@ class BaseDetachedToolFactory; class TranslationsModel; class ITheme; class MCEditTool; -class GAnalytics; namespace Meta { class Index; @@ -60,10 +59,6 @@ public: Application(int &argc, char **argv); virtual ~Application(); - GAnalytics *analytics() const { - return m_analytics; - } - std::shared_ptr settings() const { return m_settings; } @@ -161,7 +156,6 @@ private slots: void messageReceived(const QByteArray & message); void controllerSucceeded(); void controllerFailed(const QString & error); - void analyticsSettingChanged(const Setting &setting, QVariant value); void setupWizardFinished(int status); private: @@ -226,7 +220,6 @@ private: // peer launcher instance connector - used to implement single instance launcher and signalling LocalPeer * m_peerInstance = nullptr; - GAnalytics * m_analytics = nullptr; SetupWizard * m_setupWizard = nullptr; public: QString m_instanceIdToLaunch; @@ -236,3 +229,4 @@ public: QUrl m_zipToImport; std::unique_ptr logFile; }; + -- cgit