diff options
author | Rebecca Schulman <rebecka@eazel.com> | 2000-10-10 22:47:40 +0000 |
---|---|---|
committer | Rebecca Schulman <rebecka@src.gnome.org> | 2000-10-10 22:47:40 +0000 |
commit | 7967f3797a5acf3543b7c55227ab6147fa16cd4a (patch) | |
tree | c8c40be774c761349997965e4f3b0da0bca991bc /src/nautilus-complex-search-bar.c | |
parent | 3ccef64bca7652df16e306e555eef8481472e916 (diff) | |
download | nautilus-7967f3797a5acf3543b7c55227ab6147fa16cd4a.tar.gz |
used the command path instead of widget path, fixing the error in my last
2000-10-10 Rebecca Schulman <rebecka@eazel.com>
* src/file-manager/fm-icon-view.c: (update_layout_menus):
used the command path instead of widget path, fixing
the error in my last bugfix about the lack of
command widget separation
* src/nautilus-complex-search-bar.c:
(attach_criterion_to_search_bar):
Fixed some calls to hbox_new which were 0, FALSE instead
of FALSE, 0
Diffstat (limited to 'src/nautilus-complex-search-bar.c')
-rw-r--r-- | src/nautilus-complex-search-bar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-complex-search-bar.c b/src/nautilus-complex-search-bar.c index a5da0613c..11d775209 100644 --- a/src/nautilus-complex-search-bar.c +++ b/src/nautilus-complex-search-bar.c @@ -375,7 +375,7 @@ attach_criterion_to_search_bar (NautilusComplexSearchBar *bar, the entry, to keep things neat. So make a box for the entry and the suffix together */ if (criterion->details->use_value_suffix) { - hbox = gtk_hbox_new (0, FALSE); + hbox = gtk_hbox_new (FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox), GTK_WIDGET (criterion->details->value_entry), TRUE, TRUE, |