aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-dialog-utils.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-10-07 00:13:15 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-10-07 09:09:29 +0800
commit71f83089ccbb07760d3db525053a324d34717f43 (patch)
treedeafafafc541c215d74fd154c16e1d3925a8c2e0 /e-util/e-dialog-utils.h
parent2db9eff43ee816ad22b00a3808d6b4e7f0df228b (diff)
downloadgsoc2013-evolution-71f83089ccbb07760d3db525053a324d34717f43.tar
gsoc2013-evolution-71f83089ccbb07760d3db525053a324d34717f43.tar.gz
gsoc2013-evolution-71f83089ccbb07760d3db525053a324d34717f43.tar.bz2
gsoc2013-evolution-71f83089ccbb07760d3db525053a324d34717f43.tar.lz
gsoc2013-evolution-71f83089ccbb07760d3db525053a324d34717f43.tar.xz
gsoc2013-evolution-71f83089ccbb07760d3db525053a324d34717f43.tar.zst
gsoc2013-evolution-71f83089ccbb07760d3db525053a324d34717f43.zip
Bug 597533 - e_file_dialog_save() does not pass parent window
Diffstat (limited to 'e-util/e-dialog-utils.h')
-rw-r--r--e-util/e-dialog-utils.h27
1 files changed, 15 insertions, 12 deletions
diff --git a/e-util/e-dialog-utils.h b/e-util/e-dialog-utils.h
index 3af21ffb0d..b4f305bdd5 100644
--- a/e-util/e-dialog-utils.h
+++ b/e-util/e-dialog-utils.h
@@ -25,16 +25,19 @@
#include <gtk/gtk.h>
-void e_notice (gpointer parent,
- GtkMessageType type,
- const gchar *format,
- ...);
+void e_notice (gpointer parent,
+ GtkMessageType type,
+ const gchar *format,
+ ...);
+gchar * e_file_dialog_save (GtkWindow *parent,
+ const gchar *title,
+ const gchar *fname);
+GtkWidget * e_file_get_save_filesel (GtkWindow *parent,
+ const gchar *title,
+ const gchar *name,
+ GtkFileChooserAction action);
+gboolean e_file_can_save (GtkWindow *parent,
+ const gchar *uri);
+gboolean e_file_check_local (const gchar *name);
-gchar *e_file_dialog_save (const gchar *title, const gchar *fname);
-
-GtkWidget * e_file_get_save_filesel (GtkWindow *parent, const gchar *title, const gchar *name, GtkFileChooserAction action);
-
-gboolean e_file_can_save(GtkWindow *parent, const gchar *uri);
-gboolean e_file_check_local(const gchar *name);
-
-#endif
+#endif /* E_DIALOG_UTILS_H */