Fix previous.
* e-msg-composer-select-file.c (create_file_selection): Fix previous. svn path=/trunk/; revision=9254
This commit is contained in:
@ -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
|
||||
|
||||
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user