Re: [Spice-devel] Different styles

2016-05-25 Thread Jonathon Jongsma
On Wed, 2016-05-25 at 16:12 +0200, Victor Toso wrote: > Hi! > > On Wed, May 25, 2016 at 08:31:45AM -0400, Frediano Ziglio wrote: > > I personally find that vertical indentation tend to cause long lines and > > it's hard to maintain when new declarations are added (like requiring > > new indentati

Re: [Spice-devel] Different styles

2016-05-25 Thread Jonathon Jongsma
On Wed, 2016-05-25 at 08:31 -0400, Frediano Ziglio wrote: > Hi, > I was reading the style document and I found some different styles in the > code > > The structures for GObject differs from the rest of the code, they are > > struct DispatcherClass > { > GObjectClass parent_class; > }; > >

Re: [Spice-devel] Different styles

2016-05-25 Thread Victor Toso
Hi! On Wed, May 25, 2016 at 08:31:45AM -0400, Frediano Ziglio wrote: > Hi, > I was reading the style document and I found some different styles in the > code > > The structures for GObject differs from the rest of the code, they are > > struct DispatcherClass > { > GObjectClass parent_class

Re: [Spice-devel] Different styles

2016-05-25 Thread Christophe Fergeau
On Wed, May 25, 2016 at 08:31:45AM -0400, Frediano Ziglio wrote: > Hi, > I was reading the style document and I found some different styles in the > code > > The structures for GObject differs from the rest of the code, they are > > struct DispatcherClass > { > GObjectClass parent_class; >

[Spice-devel] Different styles

2016-05-25 Thread Frediano Ziglio
Hi, I was reading the style document and I found some different styles in the code The structures for GObject differs from the rest of the code, they are struct DispatcherClass { GObjectClass parent_class; }; instead of struct DispatcherClass { GObjectClass parent_class; }; (all othe