diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | src/prefs-dialog.c | 2 |
2 files changed, 11 insertions, 1 deletions
@@ -1,5 +1,15 @@ 2005-10-30 Christian Persch <chpe@cvs.gnome.org> + * src/prefs-dialog.c: (create_download_path_button): + + Fix title capitalisation. + +2005-10-30 Christian Persch <chpe@cvs.gnome.org> + + * src/prefs-dialog.c: (create_download_path_button): + +2005-10-30 Christian Persch <chpe@cvs.gnome.org> + * src/bookmarks/ephy-nodes-cover.c: (ephy_nodes_get_covering): Add array bounds check; fixes bug #320169. diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index 60f965d78..e0ad5891a 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -1161,7 +1161,7 @@ create_download_path_button (EphyDialog *dialog) properties[WINDOW_PROP].id, &parent, NULL); - fc = ephy_file_chooser_new (_("Select a directory"), + fc = ephy_file_chooser_new (_("Select a Directory"), parent, GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, NULL, EPHY_FILE_FILTER_NONE); |