* add mutex to avoid crash on qhash data update (#62)

* update gitignore
* update contributing.md
This commit is contained in:
arcan1s
2015-10-11 18:28:21 +03:00
parent 440d180c20
commit d3ab0a7228
4 changed files with 72 additions and 23 deletions

View File

@ -63,7 +63,7 @@ for more details. Some additional detail see below.
recommended.
* New lines rules:
* One line after license header.
* One line between header group declaration (see above).
* One line between header group declaration (see above) (only for source files).
* Two lines after header declaration and before declaration at the end of a
file.
* One line after class and types forward declaration in headers.
@ -75,6 +75,9 @@ for more details. Some additional detail see below.
* Class constructor should have default arguments. Use `QObject *parent` property
for QObject based classes.
* QObject based classes constructors should have explicit modifier.
* Create one file (source and header) per class.
* `else if` construction is allowed and recommended.
* 'true ? foo : bar' construction is allowed and recommended for one-line assignment.
Comments
--------