Fix previous.

* e-msg-composer-select-file.c (create_file_selection): Fix
	previous.

svn path=/trunk/; revision=9254
This commit is contained in:
Dan Winship
2001-04-11 22:38:18 +00:00
parent 9ada799450
commit ec65555bc0
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-04-11 Dan Winship <danw@ximian.com>
* e-msg-composer-select-file.c (create_file_selection): Fix
previous.
2001-04-11 Jeffrey Stedfast <fejj@ximian.com>
* e-msg-composer-select-file.c (create_file_selection): Set the

View File

@ -103,11 +103,14 @@ create_file_selection (EMsgComposer *composer)
GtkWidget *widget;
GtkWidget *ok_button;
GtkWidget *cancel_button;
char *path;
info = g_new (FileSelectionInfo, 1);
widget = gtk_file_selection_new (NULL);
gtk_file_selection_set_filename (GTK_FILE_SELECTION (widget), g_get_home_dir ());
path = g_strdup_printf ("%s/", g_get_home_dir ());
gtk_file_selection_set_filename (GTK_FILE_SELECTION (widget), path);
g_free (path);
gtk_window_set_wmclass (GTK_WINDOW (widget), "fileselection",
"Evolution:composer");
ok_button = GTK_FILE_SELECTION (widget)->ok_button;