aboutsummaryrefslogtreecommitdiffstats
path: root/CODINGSTYLE.md
diff options
context:
space:
mode:
Diffstat (limited to 'CODINGSTYLE.md')
-rw-r--r--CODINGSTYLE.md4
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