diff options
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 */ |