Make sure that all timeouts in HildonBanner are removed
[hildon] / HACKING
1 The general rules of conduct are:
2
3 * Code identation is 4 spaces NO TABS
4 * Function parameters start at column 48, one param per line
5 * Use inside-code gtk doc documentation for everything 
6 * Do not put documentation outside of the code
7 * Use g_assert's inside private functions where it makes sense (they're not
8   compiled-in by default)
9 * Put space to separate operators. Ie:
10
11 {
12     some_function (param1, param2);
13     a = 1 + 2;
14     b [1] = 10;
15 }
16
17 NEVER EVER DO:
18
19 {
20     some_function(param1,param2);
21     a=1+2;
22     b[1]=10;
23 }
24
25 * Small testing programs can be put in the examples/ directory. They can be run
26   without installation blah blah blah blah blah blah blah blah  
27 * Obey the rules present in the existing code base -- it's pretty consistent
28 * Use ONE blank line to separate things 
29