diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-04-19 12:39:59 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-04-19 14:27:54 -0700 |
commit | ad66297cfd843199f39e3a231cb8311652ea183c (patch) | |
tree | fedc6cf6422fa120de30c570f3b9a7a1224242de /CODINGSTYLE.md | |
parent | 4fd4b75269469ee1029c51bdaf8275149d20a929 (diff) | |
download | subsurface-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 'CODINGSTYLE.md')
-rw-r--r-- | CODINGSTYLE.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CODINGSTYLE.md b/CODINGSTYLE.md index c6b6e2593..a185f65b0 100644 --- a/CODINGSTYLE.md +++ b/CODINGSTYLE.md @@ -188,11 +188,11 @@ other editors that implement this coding style, please add them here. translation into other languages. - like this ``` - QString msgTitle = tr("Submit user survey."); + QString msgTitle = tr("Check for updates."); ``` - rather than ``` - QString msgTitle = "Submit user survey."; + QString msgTitle = "Check for updates."; ``` This works by default in classes (indirectly) derived from QObject. Each |