]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog.pre-2-6
get the logic correct. This will fix sizing on save dialogs.
[~andy/gtk] / ChangeLog.pre-2-6
index 4bd73d0da040a4bf0f04260525c2ba3612955022..1587dc92370d8ea46de50378ad477a79c9b510b5 100644 (file)
@@ -1,3 +1,542 @@
+Tue Mar  2 15:03:15 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_get_resizable_hints): get the logic
+       correct.  This will fix sizing on save dialogs.
+
+       (save_widgets_create): set_mnemonic_widget.
+
+2004-03-02  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_set_current_folder): Don't update the
+       save folder combo if we are already switching folders; based on a
+       patch by Jonathan Blandford.
+
+       * gtk/gtkfilechooserdefault.c (shortcuts_add_current_folder):
+       Handle failure to insert the path.  Based on a patch by Morten
+       Welinder attached to bug #135380.
+
+       * tests/testfilechooser.c (extra_widget_create): Add a bunch of
+       buttons to test various things.
+
+Tue Mar  2 20:59:23 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * tests/Makefile.am: Add testentrycompletion.
+
+       * tests/testentrycompletion.c: New file to test some of the
+       more exotic GtkEntryCompletion features.
+
+Tue Mar  2 14:38:10 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * tests/testfilechooser.c (main): improve tests a little.
+
+Tue Mar  2 11:45:50 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkcombobox.c: Always connect to the changed
+       signals on the model, update the active item as
+       appropriate when rows are inserted/deleted/reordered,
+       re-layout the menu on ::rows-reordered.
+
+       * gtk/gtkcellview.c (gtk_cell_view_set_displayed_row):
+       Allow %NULL for path to unset and leave no current
+       path.
+
+Tue Mar  2 19:54:53 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_list_position): Position
+       the popup above the sample if there is not enough room below.
+       Part of #135543.
+
+Tue Mar  2 19:53:36 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Make the 
+       frame for the list mode etched in, to give the popup a slightly
+       less flat appearance. 
+
+Tue Mar  2 17:55:31 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtk.def: Add gtk_combo_box_entry_new_text().  
+
+2004-03-02  Morten Welinder  <terra@gnome.org>
+
+       * tests/testfilechooser.c (size_prepared_cb): Don't scale images
+       that are small enough to fit.  Avoid using incompatibly typed data
+       pointer.
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_get_resizable_hints): Test the
+       resize_horizontally pointer, not the deferenced pointer.
+
+2004-03-01  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault): New
+       flag shortcuts_current_folder_is_volume.
+       (shortcuts_add_current_folder): Set
+       impl->shortcuts_current_folder_is_volume as appropriate.
+       (remove_current_folder_cb): Handle the flag.
+       (shortcuts_activate_item): Likewise.
+       (shortcuts_update_current_folder): Handle the
+       impl->shortcuts_current_folder_active flag; only add the folder if
+       it doesn't already exist in the list.
+       (shortcuts_model_create): Don't insert the current folder
+       separator here.
+       (shortcuts_add_current_folder): Insert the separator here.
+       (shortcut_find_position): Renamed from shortcut_exists(); now
+       returns an index.
+       (shortcuts_add_current_folder): Set the active item in the combo.
+
+2004-03-01  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (shortcuts_row_activated_cb): Eep,
+       use gtk_tree_model_filter_convert_iter_to_child_iter(), not the reverse.
+
+2004-03-01  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (shortcuts_model_create): Don't
+       unref an old model; there isn't one.  This was a leftover from
+       when we recreated the model on every change.
+       (save_widgets_create): Create the save folder combo.
+       (shortcuts_model_create): Don't set the model on the tree view
+       here.
+       (gtk_file_chooser_default_constructor): Create the shortcuts model
+       here, before the rest of the widgets.
+       (shortcuts_list_create): Don't call shortcuts_model_create() here;
+       just set the model on the tree.
+       (save_folder_combo_create): New function, provided by Jonathan
+       Blandford.
+       (update_appearance): Set the sensitivity of the folder combo.
+       (shortcuts_activate_iter): New helper function; code moved from
+       shortcuts_row_activated_cb().
+       (shortcuts_activate_item): New helper function.
+       (shortcuts_row_activated_cb): Use shortcuts_activate_iter().
+       (ShortcutsIndex): Renamed SHORTCUTS_SEPARATOR to
+       SHORTCUTS_BOOKMARKS_SEPARATOR.
+       (struct _GtkFileChooserDefault): New field shortcuts_current_folder_active.
+       (shortcuts_insert_separator): Add a position argument.
+       (shortcuts_get_index): Handle the SHORTCUTS_CURRENT_FOLDER_SEPARATOR 
+       and SHORTCUTS_CURRENT_FOLDER positions.
+       (shortcut_exists): Ignore the current folder row.
+       (struct _GtkFileChooserDefault): New field shortcuts_filter_model.
+       (shortcuts_model_create): Create a filter model for the shortcuts list.
+       (shortcuts_list_create): Set the model to the shortcuts_filter_model.
+       (remove_bookmark_button_clicked_cb): Use the shortcuts_filter_model.
+       (bookmarks_check_remove_sensitivity): Likewise.
+       (shortcuts_row_activated_cb): Likewise.
+       (gtk_file_chooser_default_set_current_folder): New function.
+       (gtk_file_chooser_default_set_current_folder): Update the current
+       folder row in the shortcuts list.
+
+       * gtk/gtkfilechooserwidget.c
+       (gtk_file_chooser_widget_constructor): Cast correctly for
+       _gtk_file_chooser_embed_set_delegate().
+
+Mon Mar  1 19:30:25 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkdnd.[ch]: Add gtk_drag_source_set/get_target_list().
+       (#127499, based on patch from Michael Natterer)
+
+       * tests/testgtk.c: Fix bidi strings to display correctly
+       with new auto-bidi.
+
+Tue Mar  2 01:34:40 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtksettings.c: Remove the include of Xft.h, which is already
+       dragged in via pangoxft.h.  (#135496, David Hawthorne)
+
+Mon Mar  1 23:52:15 2004  Tim Janik  <timj@gtk.org>
+
+        * gtk/gtkbindings.[hc]: expose gtk_bindings_activate_event(), changed
+        callers.
+
+        * gtk/gtkwindow.[hc]: added gtk_window_propagate_key_event() to expose
+        the key event propagation mechanism used for focus widgets.
+        (gtk_window_key_release_event): use the same key event propagation logic
+        as gtk_window_key_press_event().
+
+2004-03-01  Simon Budig  <simon@gimp.org>
+
+       * gdk/x11/gdkinput-x11.c: X11 R6.4 specifies 15 events
+       for the XInput extension. We want to see them all.
+       We now get Proximity Out events again. Fixes bug #135320.
+
+Tue Mar  2 00:47:21 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkimmodule.c (match_locale): Use case-insensitive
+       comparison. Fixes XIM module loading on AIX.  (#131277)
+
+Mon Mar  1 23:59:18 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_deleted): 
+       Make it work correctly when the child model is cleared 
+       completely. (#121633)
+
+2004-03-01  Michael Natterer  <mitch@gimp.org>
+
+       * gtk/gtkfilechooserwidget.h: removed accidentially committed char
+       which broke the build.
+
+Mon Mar  1 16:51:21 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooserdialog.c
+       (file_chooser_widget_default_size_changed): only store the size if
+       we can resize in that direction.
+
+Mon Mar  1 16:32:52 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooserwidget.c
+       (gtk_file_chooser_widget_new_with_backend): new function.  Long
+       name.
+
+2004-03-01  Morten Welinder  <terra@gnome.org>
+
+       * gtk/gtkfilesystemunix.c (filename_get_info): Only stat when
+       needed.
+
+       * gtk/gtkfilesystemmodel.c (file_model_node_is_visible): Simplify
+       semantics and check for errors.
+
+       * gtk/gtkpathbar.c (gtk_path_bar_set_path): Propagate errors.
+
+       * gtk/gtkfilefilter.c (gtk_file_filter_filter): Don't crash if
+       display_name is NULL.
+
+Mon Mar  1 14:16:52 2004  Owen Taylor  <otaylor@redhat.com>
+
+       Based on patch by Alex Larsson
+
+       * gtk/gtkfilechooserdefault.c: Use gtk-file-chooser-backend
+       GtkSetting to set the backend if the app doesn't specify one.
+
+       * gdk/x11/gdkevents-x11.c gtk/gtksettings.c:
+       Add Gtk/FileChooserBackend.
+
+Mon Mar  1 20:32:06 2004  Tim Janik  <timj@gtk.org>
+
+        * autogen.sh:
+        - exit with $? instead of 1 in case of failure
+        - exit with $? if ./configure failed
+          (that's so autogen.sh && make lines work)
+        - removed --enable-gtk-doc option
+        - added $AUTOGEN_CONFIGURE_ARGS
+
+2004-03-01  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (list_model_filter_func): Test for
+       filter_info.uri correctly.  Fixes #135379, pointed out by Damon
+       Chaplin.
+       (shortcuts_get_index): Compute the bookmarks index correctly.
+       Fixes #135714, pointed out by Damon Chaplin.
+       (gtk_file_chooser_default_list_shortcut_folders): Handle the case
+       with no shortcuts, and don't run off the end of the list if there
+       are no bookmarks and their separator.  Fixes #135572, patch by
+       Damon Chaplin.
+
+Mon Mar  1 12:23:06 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtklabel.c: Handle dynamically resolved bidi direction
+       when drawing the cursor. (#118541)
+
+       * gtk/gtkentry.c (get_better_cursor_x): Use entry->resolved_dir;
+
+       * gtk/gtkentry.c (draw_insertion_cursor): Fix up
+       some confusion in parameter ordering.
+
+Mon Mar  1 12:05:54 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooserdialog.c
+       (file_chooser_widget_resizable_hints_changed): Handle
+       shrinking/growing.
+
+2004-03-01  Michael Natterer  <mitch@gimp.org>
+
+       * gtk/gtktextbtree.c: removed underscores from calls to
+       gtk_text_btree_resolve_bidi().
+
+Mon Mar  1 10:41:27 2004  Owen Taylor  <otaylor@redhat.com>
+
+       Patch from Dov Grobgeld to implement auto-bidi-direction
+       for GtkTextView (#118543)
+
+       * gtk/gtktextbtree.[ch]: Resolve bidi base direction
+       for each line by propagating backwards/forwards as
+       necessary.
+
+       * gtk/gtktextlayout.[ch] gtk/gtktextview.c: Set the 
+       bidi base direction for the ;ine with the cursor from 
+       the keyboard direction. Add gtk_text_layout_set_keyboard_direction().
+       
+Mon Mar  1 10:31:11 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkentry.[ch]: Implement auto-bidi-direction,
+       based on a patch from Dov Grobgeld. (#118540)
+
+Sun Feb 29 22:01:49 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkentry.[ch]: Add gtk_entry_set_alignment() 
+       to allow right-aligned entries and a "xalign" 
+       property. (#59799, patch from Egon Andersen and 
+       Steffen Gutmann)
+
+       * gtk/gtkmisc.c (gtk_misc_class_init): Use improved
+       xalign property description here too.
+
+       * tests/testtext.c: UNDERLINE_ERROR test addition
+       from Nicolas Settons' patch.
+
+Sun Feb 29 20:34:06 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkwindow.[ch] gtk/gtkmenushell.c: export
+       gtk_window_activate_key() (Request from Tim Janik)
+
+Mon Mar  1 01:00:11 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtktextview.c (gtk_text_view_drag_data_received): 
+       Make DND operations within a buffer move the dragged 
+       text instead of copying it; also make DND operations 
+       a single user action for undo purposes.  (#135191, 
+       #93139, reported by Tommi Komulainen, patch by Paolo Borelli
+       and Paolo Maggi)
+
+Mon Mar  1 00:51:11 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * NEWS: News for 2.3.5.
+
+Sun Feb 29 23:25:35 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkentry.c (gtk_entry_completion_key_press): 
+       Fix the Shift-Tab support to go backwards.
+
+Sun Feb 29 16:40:40 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtktextview.c (gtk_text_view_class_init): Fix 
+       capitalization to match other style properties.
+
+Sun Feb 29 16:38:53 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtktextview.c (gtk_text_view_class_init): Fix a
+       typo in property string.
+
+Sun Feb 29 16:35:23 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdkpango.c gtk/gtktextdisplay.c: Implement
+       PANGO_UNDERLINE_ERROR (Based on a patch by
+       Nicolas Setton, #114237)
+
+       * gtk/gtktextview.c: Add a error-underline-color style
+       property.
+
+Sun Feb 29 19:04:33 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * gtk/gtkrange.c (_gtk_range_get_wheel_delta): New internal
+       function returning a good step value for the mouse wheel. For
+       scrollbars, base the step on page_size^(2/3), for other ranges,
+       use 2 * step_increment.
+
+       * gtk/gtkrange.c (gtk_range_scroll_event): Use it here ...
+
+       * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_event): 
+       ... and here.
+
+       * gtk/gtkmenu.c (gtk_menu_leave_notify): Fix a warning.
+
+Sun Feb 29 01:51:27 2004  Jonathan Blandford  <jrb@gnome.org>
+
+       * gtk/gtkfilechooserembed.c
+       (_gtk_file_chooser_embed_get_default_size):  Add g_return_if_fail()
+       (_gtk_file_chooser_embed_get_resizable_hints): Add g_return_if_fail()
+
+       * gtk/gtkfilechooserdialog.c
+       (file_chooser_widget_default_size_changed): Get the correct
+       initial size for the dialog.  Also, don't bother with
+       gtk_window_set_default_size().  It's not really meaningful.
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_get_default_size): Get the correct
+       spacing for the preview_widget
+       (update_preview_widget_visibility): Clear widget field after we
+       destroy it.
+
+2004-02-29  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_set_property): Handle
+       GTK_FILE_CHOOSER_PROP_USE_PREVIEW_LABEL.
+       (gtk_file_chooser_default_get_property): Likewise.
+       (struct _GtkFileChooserDefault): Added fields for preview_label,
+       use_preview_label, preview_display_name, preview_box.  Removed
+       preview_frame.
+       (set_preview_widget): Reorder the widget in relation to the label.
+       (update_preview_widget_visibility): Create or destroy the preview
+       label.
+       (check_preview_change): Update impl->preview_display_name and the
+       label.
+       (find_good_size_from_style): Use the preview_box.
+       (gtk_file_chooser_default_finalize): Free
+       impl->preview_display_name.
+       (gtk_file_chooser_default_init): Initialize
+       impl->use_preview_label.
+
+       * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add a
+       "use-preview-label" property.
+       (gtk_file_chooser_set_use_preview_label): New function.  This sets
+       whether one wants the file chooser to display a stock label with
+       the previewed filename.  Apps that do really fancy previews can
+       turn this off and draw the name themselves.
+       (gtk_file_chooser_get_use_preview_label): New function.
+       (gtk_file_chooser_get_preview_widget_active): Documentation fix.
+
+       * gtk/gtkfilechooserutils.h (GtkFileChooserProp): Add a
+       GTK_FILE_CHOOSER_PROP_USE_PREVIEW_LABEL value.
+
+       * gtk/gtkfilechooserutils.c
+       (_gtk_file_chooser_install_properties): Override the
+       "use-preview-label" property.
+
+Sun Feb 29 04:43:29 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkentry.c (gtk_entry_completion_key_press): Make Tab and
+       Shift-Tab work when the completion popup is shown.
+
+2004-02-28  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (create_folder_tree): Use "Name" for
+       the title of the filename column.
+       (create_file_list): Likewise.
+
+Sun Feb 29 03:31:42 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkentry.c (gtk_entry_completion_key_press): Fix Page_Up 
+       and Page_Down in the completion popup to move page-wise if we're
+       scrolling.
+
+2004-02-28  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c (set_cell_text_bold_if_folder):
+       Removed.
+       (list_name_data_func): Don't call the function above.
+       (list_mtime_data_func): Likewise.
+
+Sun Feb 29 02:34:35 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_list_position): New 
+       function which calculates position and size for the popup in
+       list mode. Currently it only pushes the popup horizontally 
+       into the screen.
+
+Sun Feb 29 01:10:09 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c: Implement the previous fix in a better way,
+       small cleanups.
+
+2004-02-28  Hans Breuer  <hans@breuer.org>
+
+       * gtk/gtkfilesystemwin32.c : applied patch from
+       J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135641
+
+Sat Feb 28 23:30:36 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_popup): Actually resize the
+       popup window before popping up.  (#135651)
+
+Sat Feb 28 23:29:35 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
+       * gtk/gtkcombobox.c (gtk_combo_box_init): Override the default
+       handler for style_set in class_init instead of connecting to
+       the signal in init. (noticed by Yosh).
+
+Sat Feb 28 14:48:35 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * demos/gtk-demo/main.c (read_line): #ifdef HAVE_FLOCKFILE, 
+       not #ifndef HAVE_FLOCKFILE. (#135642, J. Ali Harlow)
+
+2004-02-28  Hans Breuer  <hans@breuer.org>
+
+       * gtk/gtkfilesystemwin32.c : adapt to add -> insert_bookmark
+       change. Also merged some crossplatform code from 
+       gtkfilesystemunix.c
+       * gtk/gtk.def : updated externals
+
+       * gtk/makefile.msc.in : added gtkfilechooserembed.obj
+
+2004-02-28  Hans Breuer  <hans@breuer.org>
+
+       * gdk/win32/gdkdnd-win32.c : set current_dest_drag to NULL
+       when destroying, fixes bug #120007. Also removed the mirrored
+       ref counting for deprecated gdk_drag_context_<ref|unref>()
+       cause it wasn't reliable anymore anyway.
+
+       * gdk/win32/gdkdisplay-win32.c : fix typo, which should
+       have broken the win32 build for everyone not using msvc
+
+       * gdk/win32/gdkevents-win32.c : WM_GETMINAMXINFO ensure not to
+       return negative values for ptMaxTrackSize, it caused snapping
+       windows to their minimum size
+
+Sat Feb 28 01:39:01 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_set_wrap_width): Support
+       switching back to non-gridded mode.  (#135169)
+
+Fri Feb 27 22:29:46 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkwidget.c (gtk_widget_can_activate_accel): Add "Since: 2.4".
+
+Fri Feb 27 18:52:19 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_style_set):
+       Whoops.  Didn't mean to commit the size change.
+
+Fri Feb 27 18:46:27 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooserembed.h: New private interface to help
+       negotiate the default size of the widget.  Still a bit buggy, but
+       better than the old behavior.
+
+       * gtk/gtkfilechooserdefault.c: Implement the embed interface.
+
+       * gtk/gtkfilechooserwidget.c: Proxy the embed interface.
+
+       * gtk/gtkfilechooserdialog.c: Use the embed interface.
+
+2004-02-27  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilesystem.c (gtk_file_system_insert_bookmark): Added a
+       "position" argument.
+
+       * gtk/gtkfilesystem.h (GtkFileSystemError): Added value for 
+       GTK_FILE_SYSTEM_ERROR_ALREADY_EXISTS.
+       (struct _GtkFileSystemIface): Added a "position" argument to the
+       ::insert_bookmark() method.
+
+       * gtk/gtkfilesystemunix.c (gtk_file_system_unix_insert_bookmark):
+       Updated; renamed from gtk_file_system_unix_add_bookmark().  Return
+       an error if the path already exists in the bookmarks list.
+       (gtk_file_system_unix_remove_bookmark): Return an error if the
+       path does not exist in the bookmarks list.
+
+       * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmark_from_path):
+       For now, use gtk_file_system_insert_bookmark() with -1 for the
+       position.  DnD will come next.
+
+Fri Feb 27 21:42:28 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_relayout): 
+       * gtk/gtkcombobox.c (gtk_combo_box_style_set): Simplify, only 
+       create a new setup if appearance actually changed.
+       * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_clear): 
+       * gtk/gtkcombobox.c (gtk_combo_box_get_cell_info): Make 
+       these more robust.  (#127623, Damon Chaplin)
+
+Fri Feb 27 15:06:00 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): remove
+       folder-mode property.
+
+       * gtk/gtkfilechooserutils.c
+       (_gtk_file_chooser_install_properties): remove FOLDER_MODE property.
+
 Thu Feb 26 17:38:40 2004  Manish Singh  <yosh@gimp.org>
 
        * gtk/gtkcombobox.c: Add function declaration for
@@ -7896,7 +8435,7 @@ Fri Jun  6 11:05:45 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
 Thu Jun  5 20:35:40 2003  Owen Taylor  <otaylor@redhat.com>
 
        * demos/Makefile.am: Conditionalize dependencies for
-       gdk-pixbuf-csource on cross-compilation (#112391, J. Ali Harlowe). 
+       gdk-pixbuf-csource on cross-compilation (#112391, J. Ali Harlow). 
        Buildtest-inline-pixbufs.h in srcdir. Don't try to build 
        test-inline-pixbufs.h if we don't have libpng.