From 1038e290a32289a40908e28f51b194d80d1970d6 Mon Sep 17 00:00:00 2001 From: crs Date: Mon, 2 Sep 2002 17:14:21 +0000 Subject: [PATCH] added notes to PORTING. --- PORTING | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/PORTING b/PORTING index 2689c73f..55fc63c5 100644 --- a/PORTING +++ b/PORTING @@ -263,6 +263,7 @@ following these guidelines. * All files should include the copyright and license notice * Use tabs to indent * Tabs are 4 columns + * Lines should not extend past the 80th column * Open braces ({) go on same line as introducing statement `for (i = 0; i < 10; ++i) {' not for (i = 0; i < 10; ++i) @@ -281,6 +282,9 @@ following these guidelines. * Use Qt style comments for extraction by doxygen * Mark incomplete or buggy code with `FIXME' +- Other + * calls to log() should always be all on one line (even past column 80) + Class Relationships -------------------