diff options
author | Perberos <[email protected]> | 2011-11-24 23:33:08 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-24 23:33:08 -0300 |
commit | af876ebbd621a63a1a0636fb0ce74da5c2aca480 (patch) | |
tree | fffc4b798e4172059fbd25d78f5bce93b3284af2 /src/math-display.h | |
parent | 5b8921d58fbb5ad226815829dece99d5cfc781b8 (diff) | |
download | mate-calc-af876ebbd621a63a1a0636fb0ce74da5c2aca480.tar.bz2 mate-calc-af876ebbd621a63a1a0636fb0ce74da5c2aca480.tar.xz |
allman style format
Diffstat (limited to 'src/math-display.h')
-rw-r--r-- | src/math-display.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/math-display.h b/src/math-display.h index f933d37..7d8718a 100644 --- a/src/math-display.h +++ b/src/math-display.h @@ -30,23 +30,21 @@ G_BEGIN_DECLS typedef struct MathDisplayPrivate MathDisplayPrivate; -typedef struct -{ - GtkVBox parent_instance; - MathDisplayPrivate *priv; +typedef struct { + GtkVBox parent_instance; + MathDisplayPrivate* priv; } MathDisplay; -typedef struct -{ - GtkVBoxClass parent_class; +typedef struct { + GtkVBoxClass parent_class; } MathDisplayClass; GType math_display_get_type(void); -MathDisplay *math_display_new(void); +MathDisplay* math_display_new(void); -MathDisplay *math_display_new_with_equation(MathEquation *equation); +MathDisplay* math_display_new_with_equation(MathEquation* equation); -MathEquation *math_display_get_equation(MathDisplay *display); +MathEquation* math_display_get_equation(MathDisplay* display); #endif /* MATH_DISPLAY_H */ |