aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-12-19 10:14:22 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-12-19 10:14:22 +0100
commitc1ad1be5924eb28bf6c32b049098fe24bbbb9e4e (patch)
tree7cc5ab0e600496279ab575a99a6a0b97c0d6f854 /docs
parentSome bugfixes (diff)
downloadsmolbote-c1ad1be5924eb28bf6c32b049098fe24bbbb9e4e.tar.xz
Bug fixes
Switching between tabs should work properly now. Refactored MainWindowTabBar (was WebViewTabBar)
Diffstat (limited to 'docs')
-rw-r--r--docs/manual/Contributing.Style.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/manual/Contributing.Style.md b/docs/manual/Contributing.Style.md
index 4d7ef1b..7f3a052 100644
--- a/docs/manual/Contributing.Style.md
+++ b/docs/manual/Contributing.Style.md
@@ -4,7 +4,6 @@
* Use generic formats
* Where possible, use QVector over QList: http://lists.qt-project.org/pipermail/development/2017-March
/029040.html
-* Check pointers with Q_CHECK_PTR before returning them
## Versioning
@@ -17,6 +16,11 @@
* next - next stable release preparation, mostly for bugfixes
* development - development branch, anything goes there
+## Qt
+* Check pointers with ´´´Q_CHECK_PTR´´´ before returning them
+* Avoid using connect SIGNAL and SLOT. Instead use &Class::method. This way,
+connects are checked during the compile, not at runtime.
+
## clazy
You can use [clazy](https://github.com/KDE/clazy) to check Qt semantics.
Requires clang.