From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Angelo Graziosi Newsgroups: gmane.emacs.devel Subject: Tooltip and WARNING Date: Mon, 02 Aug 2010 13:47:24 +0200 Message-ID: <4C56B04C.9060608@alice.it> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: Quoted-Printable X-Trace: dough.gmane.org 1280749671 29111 80.91.229.12 (2 Aug 2010 11:47:51 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 2 Aug 2010 11:47:51 +0000 (UTC) To: Emacs Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Aug 02 13:47:49 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OftUg-0006xK-RC for ged-emacs-devel@m.gmane.org; Mon, 02 Aug 2010 13:47:47 +0200 Original-Received: from localhost ([127.0.0.1]:33915 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OftUg-0007w1-C8 for ged-emacs-devel@m.gmane.org; Mon, 02 Aug 2010 07:47:46 -0400 Original-Received: from [140.186.70.92] (port=44726 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OftUX-0007tV-Mi for emacs-devel@gnu.org; Mon, 02 Aug 2010 07:47:41 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OftUW-00043X-J1 for emacs-devel@gnu.org; Mon, 02 Aug 2010 07:47:37 -0400 Original-Received: from smtp205.alice.it ([82.57.200.101]:51831) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OftUW-00043G-8k for emacs-devel@gnu.org; Mon, 02 Aug 2010 07:47:36 -0400 Original-Received: from [82.57.146.254] (82.57.146.254) by smtp205.alice.it (8.5.124.08) id 4C1A264502E16593 for emacs-devel@gnu.org; Mon, 2 Aug 2010 13:47:34 +0200 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.9.2.7) Gecko/20100713 Thunderbird/3.1.1 X-detected-operating-system: by eggs.gnu.org: Windows 98 (1) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:128102 Archived-At: With rev.100963 (GTK build on Kubuntu 8.04, for example), each time=20 Emacs shows a 'tooltip', on the command line appears a WARNING, i.e. $ emacs24 -Q & (emacs24:29687): GLib-GObject-WARNING **: IA__g_object_get_valist:=20 object class `GtkSettings' has no property named `gtk-enable-tooltips' (emacs24:29687): GLib-GObject-WARNING **: IA__g_object_set_valist:=20 object class `GtkSettings' has no property named `gtk-enable-tooltips' (emacs24:29687): GLib-GObject-WARNING **: IA__g_object_set_valist:=20 object class `GtkSettings' has no property named `gtk-enable-tooltips' (emacs24:29687): GLib-GObject-WARNING **: IA__g_object_get_valist:=20 object class `GtkSettings' has no property named `gtk-enable-tooltips' (emacs24:29687): GLib-GObject-WARNING **: IA__g_object_set_valist:=20 object class `GtkSettings' has no property named `gtk-enable-tooltips' (emacs24:29687): GLib-GObject-WARNING **: IA__g_object_set_valist:=20 object class `GtkSettings' has no property named `gtk-enable-tooltips' [...] Each WARNING is for each tooltip :( This didn't occur with previous revisions... Perhaps these changes are the cause: 2010-08-01 Jan Dj=C3=A4rv <...@...> [...] * xfns.c (x_gtk_use_system_tooltips): New variable. (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call new gtkutil tooltip functions to show the tooltip. (Fx_hide_tip): Call xg_hide_tooltip. (syms_of_xfns): Defvar x-gtk-use-system-tooltips. * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip) (xg_show_tooltip, xg_hide_tooltip): Declare. [...] Ciao, Angelo.