~ubuntu-branches/ubuntu/maverick/awn-extras-applets/maverick

« back to all changes in this revision

Viewing changes to applets/maintained/cairo-menu/cairo-menu-applet.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-08-29 14:29:52 UTC
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20100829142952-rhvuetyms9bv5uu7
Tags: upstream-0.4.0+bzr1372
ImportĀ upstreamĀ versionĀ 0.4.0+bzr1372

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
   TODO fix the various travesties*/
157
157
  GList * iter;
158
158
  GError * error = NULL;
159
 
  gchar * filename = APPLETSDIR"/../../../lib/awn/applets/cairo-menu/gnome-menu-builder";
 
159
  gchar * filename = LIBDIR"/awn/applets/cairo-menu/gnome-menu-builder";
160
160
  GModule      *module;
161
161
 
162
162
  G_OBJECT_CLASS (cairo_menu_applet_parent_class)->constructed (object);
163
 
  module = g_module_open (filename, 
164
 
                          G_MODULE_BIND_LAZY);  
 
163
  module = g_module_open (filename,G_MODULE_BIND_LAZY);  
165
164
  g_assert (module);
166
165
  if (!g_module_symbol (module, "menu_build", (gpointer *)&menu_build))
167
166
  {