Changes between Initial Version and Version 1 of Ticket #1447, comment 14


Ignore:
Timestamp:
08/19/23 14:02:17 (11 months ago)
Author:
andrew_b
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1447, comment 14

    initial v1  
    2424Save my eyes and my brain. 
    2525* Avoid initialized and not initialized variables in one declaration.  
     26* Reduce variable scope as much as possible: declare local variable in that block where it is used. 
     27* Split variable declaration and code using one empty line. 
    2628* Do not use gboolean as integer and integer as bgoolean. 
    2729