diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-08-21 20:39:03 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-08-26 15:52:09 +0800 |
commit | 5b06953566c13a940f69933868541e4a43200e90 (patch) | |
tree | 404f48585419284b0439ab845791d41c162cfb08 /src/empathy-debug-dialog.h | |
parent | cd8ff6a009f3e9cb41cc6b13f6d89e2e81dcb1b7 (diff) | |
download | gsoc2013-empathy-5b06953566c13a940f69933868541e4a43200e90.tar gsoc2013-empathy-5b06953566c13a940f69933868541e4a43200e90.tar.gz gsoc2013-empathy-5b06953566c13a940f69933868541e4a43200e90.tar.bz2 gsoc2013-empathy-5b06953566c13a940f69933868541e4a43200e90.tar.lz gsoc2013-empathy-5b06953566c13a940f69933868541e4a43200e90.tar.xz gsoc2013-empathy-5b06953566c13a940f69933868541e4a43200e90.tar.zst gsoc2013-empathy-5b06953566c13a940f69933868541e4a43200e90.zip |
Make EmpathyDebugDialog be a GtkWindow subclass rather than a GtkDialog.
This is because:
1) There are no actions, so it's not a dialog
2) We want to hide the seperator for the action area
3) To be able to maximize the window
Diffstat (limited to 'src/empathy-debug-dialog.h')
-rw-r--r-- | src/empathy-debug-dialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-debug-dialog.h b/src/empathy-debug-dialog.h index 5d98fa0a4..903fa5361 100644 --- a/src/empathy-debug-dialog.h +++ b/src/empathy-debug-dialog.h @@ -45,13 +45,13 @@ typedef struct _EmpathyDebugDialogClass EmpathyDebugDialogClass; struct _EmpathyDebugDialog { - GtkDialog parent; + GtkWindow parent; gpointer priv; }; struct _EmpathyDebugDialogClass { - GtkDialogClass parent_class; + GtkWindowClass parent_class; }; GType empathy_debug_dialog_get_type (void) G_GNUC_CONST; |