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-window.h | |
parent | 5b8921d58fbb5ad226815829dece99d5cfc781b8 (diff) | |
download | mate-calc-af876ebbd621a63a1a0636fb0ce74da5c2aca480.tar.bz2 mate-calc-af876ebbd621a63a1a0636fb0ce74da5c2aca480.tar.xz |
allman style format
Diffstat (limited to 'src/math-window.h')
-rw-r--r-- | src/math-window.h | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/src/math-window.h b/src/math-window.h index 70c81bd..cd180f6 100644 --- a/src/math-window.h +++ b/src/math-window.h @@ -31,31 +31,29 @@ G_BEGIN_DECLS typedef struct MathWindowPrivate MathWindowPrivate; -typedef struct -{ - GtkWindow parent_instance; - MathWindowPrivate *priv; +typedef struct { + GtkWindow parent_instance; + MathWindowPrivate* priv; } MathWindow; -typedef struct -{ - GtkWindowClass parent_class; +typedef struct { + GtkWindowClass parent_class; - void (*quit)(MathWindow *window); + void (*quit) (MathWindow* window); } MathWindowClass; GType math_window_get_type(void); -MathWindow *math_window_new(MathEquation *equation); +MathWindow* math_window_new(MathEquation* equation); -GtkWidget *math_window_get_menu_bar(MathWindow *window); +GtkWidget* math_window_get_menu_bar(MathWindow* window); -MathEquation *math_window_get_equation(MathWindow *window); +MathEquation* math_window_get_equation(MathWindow* window); -MathDisplay *math_window_get_display(MathWindow *window); +MathDisplay* math_window_get_display(MathWindow* window); -MathButtons *math_window_get_buttons(MathWindow *window); +MathButtons* math_window_get_buttons(MathWindow* window); -void math_window_critical_error(MathWindow *window, const gchar *title, const gchar *contents); +void math_window_critical_error(MathWindow* window, const gchar* title, const gchar* contents); #endif /* MATH_WINDOW_H */ |