added notes to PORTING.
This commit is contained in:
parent
cc8272e258
commit
1038e290a3
4
PORTING
4
PORTING
|
@ -263,6 +263,7 @@ following these guidelines.
|
||||||
* All files should include the copyright and license notice
|
* All files should include the copyright and license notice
|
||||||
* Use tabs to indent
|
* Use tabs to indent
|
||||||
* Tabs are 4 columns
|
* Tabs are 4 columns
|
||||||
|
* Lines should not extend past the 80th column
|
||||||
* Open braces ({) go on same line as introducing statement
|
* Open braces ({) go on same line as introducing statement
|
||||||
`for (i = 0; i < 10; ++i) {' not
|
`for (i = 0; i < 10; ++i) {' not
|
||||||
for (i = 0; i < 10; ++i)
|
for (i = 0; i < 10; ++i)
|
||||||
|
@ -281,6 +282,9 @@ following these guidelines.
|
||||||
* Use Qt style comments for extraction by doxygen
|
* Use Qt style comments for extraction by doxygen
|
||||||
* Mark incomplete or buggy code with `FIXME'
|
* Mark incomplete or buggy code with `FIXME'
|
||||||
|
|
||||||
|
- Other
|
||||||
|
* calls to log() should always be all on one line (even past column 80)
|
||||||
|
|
||||||
|
|
||||||
Class Relationships
|
Class Relationships
|
||||||
-------------------
|
-------------------
|
||||||
|
|
Loading…
Reference in New Issue