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
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;
> };
>
>
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
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;
>
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