Comment #6 on issue 16156 by e...@chromium.org: memory leak in gtk_im_context_set_cursor_location
http://code.google.com/p/chromium/issues/detail?id=16156

Is it possible this is the static GType class that is leaking?
The code involved is:
void
gtk_im_context_set_cursor_location (GtkIMContext *context,
                                    GdkRectangle *area)
{
  GtkIMContextClass *klass;

  g_return_if_fail (GTK_IS_IM_CONTEXT (context));

  klass = GTK_IM_CONTEXT_GET_CLASS (context);
  if (klass->set_cursor_location)
    klass->set_cursor_location (context, area);
}

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
-- 
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs

Reply via email to