~ubuntu-branches/ubuntu/vivid/sflphone/vivid

« back to all changes in this revision

Viewing changes to kde/DEVELOPPER

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2013-06-30 11:40:56 UTC
  • mfrom: (4.1.18 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130630114056-0np50jkyqo6vnmii
Tags: 1.2.3-2
* changeset_r92d62cfc54732bbbcfff2b1d36c096b120b981a5.diff 
  - fixes automatic endian detection 
* Update Vcs: fixes vcs-field-not-canonical

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From now on, those coding guideline must be applied to prevent more fragmentation of the coding style:
 
2
-Class name must start with a caps
 
3
-Funtion and variables names must -not- start with a caps
 
4
-Words in functions must be separated by caps "addNewCall"
 
5
-Pointer symbol should be merge with the type QWidget* aWidget
 
6
-Indentation must be 3 (three) -space- wide, every IDE have options to set that
 
7
-Classes and functions bracket must look like:
 
8
   void MyClass::myFunction()
 
9
   {
 
10
 
 
11
   }
 
12
-If, while, case and for most look like this:
 
13
   if () {
 
14
 
 
15
   }
 
16
   else {
 
17
 
 
18
   }
 
19
-One line if without braces are allowed
 
20
-The .h HAVE TO BE COMMENTED following the doxygen syntax
 
21
-"Autoconnect" functions are allowed
 
22
-Qt STL and macro are recommaded
 
23
-KDE class are prefered over pure Qt classes