diff options
author | Darin Adler <darin@src.gnome.org> | 2001-11-05 18:17:24 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2001-11-05 18:17:24 +0000 |
commit | 55941234a1093b594a8cd5085331c58cf695ff4a (patch) | |
tree | 5f6dd50ab950a2d73bbdd301db4e9a9133bdbbf5 /cut-n-paste-code | |
parent | bdcd47873fc00c8f0013a2ecc85731622b961326 (diff) | |
download | nautilus-55941234a1093b594a8cd5085331c58cf695ff4a.tar.gz |
Fix a G_OBJECT_CLASS that should have been G_OBJECT_GET_CLASS.
* cut-n-paste-code/widgets/e-paned/e-paned.c:
(e_paned_handle_shown): Fix a G_OBJECT_CLASS that should
have been G_OBJECT_GET_CLASS.
* libnautilus-private/Makefile.am: Add back the dependency on
the cut-n-paste libraries.
* libnautilus-private/nautilus-bonobo-extensions.c:
(nautilus_bonobo_get_hidden): Silently ignore when there's no
"hidden" attribute rather than warning every time.
* libnautilus-private/nautilus-icon-factory.c:
(nautilus_icon_factory_get_pixbuf_for_icon): Ref all the pixbufs
on their way out of the icon factory since we don't have a new
strategy for removing them from the cache when the caller is done
yet.
* src/nautilus-sidebar-title.c:
(sidebar_title_create_more_info_label): Don't call make_smaller
so Havoc won't complain every time we do it.
* src/nautilus-view-frame.c: (nautilus_view_frame_destroy): Check
for NULL so we can call destroy any number of times.
* src/nautilus-window-toolbars.c:
(nautilus_window_initialize_toolbars): Turn off the code that
tries to load the throbber since we aren't compiling it yet.
* components/loser/content/nautilus-content-loser-ui.xml:
* components/loser/sidebar/nautilus-sidebar-loser-ui.xml:
* components/sample/nautilus-sample-content-view-ui.xml:
* libnautilus/nautilus-clipboard-ui.xml:
* src/nautilus-shell-ui.xml:
Update for new names of stock icons.
Diffstat (limited to 'cut-n-paste-code')
-rw-r--r-- | cut-n-paste-code/widgets/e-paned/e-paned.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cut-n-paste-code/widgets/e-paned/e-paned.c b/cut-n-paste-code/widgets/e-paned/e-paned.c index 770bed830..8cb258e14 100644 --- a/cut-n-paste-code/widgets/e-paned/e-paned.c +++ b/cut-n-paste-code/widgets/e-paned/e-paned.c @@ -616,7 +616,7 @@ e_paned_compute_position(EPaned *paned, gboolean e_paned_handle_shown(EPaned *paned) { - EPanedClass *klass = E_PANED_CLASS(G_OBJECT_CLASS(paned)); + EPanedClass *klass = E_PANED_CLASS(G_OBJECT_GET_CLASS(paned)); if (klass->handle_shown) return (*klass->handle_shown)(paned); else |