diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-11-16 16:11:05 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-11-16 16:11:05 +0000 |
commit | 26aa13b0efe62de598786fb2d21573eb43932470 (patch) | |
tree | 3a2f9581a6f0311406d3033d8a5895bb599f75fb /gtk/gtkthemes.c | |
parent | 74df6fc0a5bb27938e83a8f20d91a6412438fe09 (diff) | |
download | gtk+-26aa13b0efe62de598786fb2d21573eb43932470.tar.gz |
Point -rpath to the right install location.
Wed Nov 15 21:51:31 2000 Owen Taylor <otaylor@redhat.com>
* modules/input/Makefile.am (im_xim_la_LDFLAGS): Point
-rpath to the right install location.
* modules/input/Makefile.am (im_inuktitut_la_LDFLAGS): Remove
-export-dynamic.
* gtk/gtkthemes.c (gtk_theme_engine_get): Set engine->name
properly.
Diffstat (limited to 'gtk/gtkthemes.c')
-rw-r--r-- | gtk/gtkthemes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkthemes.c b/gtk/gtkthemes.c index af3a2cb048..09bdd3ea04 100644 --- a/gtk/gtkthemes.c +++ b/gtk/gtkthemes.c @@ -175,6 +175,7 @@ gtk_theme_engine_get (const gchar *name) { result = GTK_THEME_ENGINE (g_object_new (GTK_TYPE_THEME_ENGINE, NULL)); g_type_module_set_name (G_TYPE_MODULE (result), name); + result->name = g_strdup (name); g_hash_table_insert (engine_hash, result->name, result); } |