diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-02-23 09:09:48 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-23 09:31:08 -0800 |
commit | ddc01e39e7486434c6b814358ab4c77ea92c0776 (patch) | |
tree | 400ca390cff8070e5736eeeaf5d3f913b7d58b0a /qt-ui/usersurvey.cpp | |
parent | 62999c866f993bacadbbcad8aaf9a191f440dd1a (diff) | |
download | subsurface-ddc01e39e7486434c6b814358ab4c77ea92c0776.tar.gz |
Move helper functions around
We had a ton of helper functions in qt-gui.cpp which really didn't make
much sense. So I moved them all into qthelper.cpp.
Also moved the UserAgent helper that didn't belong in the UpdateHandler to
begin with - that's a generic helper used in many places...
With this we can successfully build using cmake again.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/usersurvey.cpp')
-rw-r--r-- | qt-ui/usersurvey.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/qt-ui/usersurvey.cpp b/qt-ui/usersurvey.cpp index a2b47e4d0..05da582a1 100644 --- a/qt-ui/usersurvey.cpp +++ b/qt-ui/usersurvey.cpp @@ -49,22 +49,6 @@ QString UserSurvey::getVersion() return sysInfo; } -QString UserSurvey::getUserAgent() -{ - QString arch; - // fill in the system data - use ':' as separator - // replace all other ':' with ' ' so that this is easy to parse - QString userAgent = QString("Subsurface:%1:").arg(subsurface_version()); - userAgent.append(SubsurfaceSysInfo::prettyOsName().replace(':', ' ') + ":"); - arch = SubsurfaceSysInfo::buildCpuArchitecture().replace(':', ' '); - userAgent.append(arch); - if (arch == "i386") - userAgent.append("/" + SubsurfaceSysInfo::currentCpuArchitecture()); - userAgent.append(":" + uiLanguage(NULL)); - return userAgent; - -} - UserSurvey::~UserSurvey() { delete ui; |