summaryrefslogtreecommitdiff
path: root/libnautilus-extensions/nautilus-bonobo-extensions.c
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-12-11 22:31:52 +0000
committerDarin Adler <darin@src.gnome.org>2000-12-11 22:31:52 +0000
commitc415a8e0a5433bc7b1cd029b5285f33a87063de5 (patch)
treedce2b90ae3d9ca36a1d954e75ef903bdcb4a4ca3 /libnautilus-extensions/nautilus-bonobo-extensions.c
parent25107f9cb683104fd8b08ef8d51b91b31d0bbea2 (diff)
downloadnautilus-c415a8e0a5433bc7b1cd029b5285f33a87063de5.tar.gz
reviewed by: John Sullivan <sullivan@eazel.com>
Fixed bug 5112 (Segfault on startup using non C locale). The error was caused by localized text making it through bonobo to gnome-xml, which only happened because we were using an incorrect attribute name. * libnautilus-extensions/nautilus-bonobo-extensions.c: * libnautilus-extensions/nautilus-bonobo-extensions.h: Removed nautilus_bonobo_set_description because there is no attribute named "description" any more. It's now "tip". * src/file-manager/fm-directory-view.c: (real_update_menus): Use set_tip instead of set_description. Another cut at the placeholder changes. I caught one problem and John caught some others when he reviewed my last check-in. * src/file-manager/nautilus-directory-view-ui.xml: * src/file-manager/nautilus-icon-view-ui.xml: * src/nautilus-service-ui.xml: Removed some "delimit" and added others. Only the file that actually defines a placeholder should use a delimit, and you must always use a delimit when defining the placeholder.
Diffstat (limited to 'libnautilus-extensions/nautilus-bonobo-extensions.c')
-rw-r--r--libnautilus-extensions/nautilus-bonobo-extensions.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libnautilus-extensions/nautilus-bonobo-extensions.c b/libnautilus-extensions/nautilus-bonobo-extensions.c
index d40cff35a..4f580d6e7 100644
--- a/libnautilus-extensions/nautilus-bonobo-extensions.c
+++ b/libnautilus-extensions/nautilus-bonobo-extensions.c
@@ -46,18 +46,6 @@ nautilus_bonobo_set_accelerator (BonoboUIComponent *ui,
}
void
-nautilus_bonobo_set_description (BonoboUIComponent *ui,
- const char *path,
- const char *description)
-{
- g_return_if_fail (BONOBO_IS_UI_COMPONENT (ui));
- bonobo_ui_component_set_prop (ui, path,
- "descr",
- description,
- NULL);
-}
-
-void
nautilus_bonobo_set_label (BonoboUIComponent *ui,
const char *path,
const char *label)