From a03b1ebebf434ff1fe71cd83b8ac31a7b699296b Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 18 Jun 2010 08:50:11 +0100 Subject: gtkfpicker9: #i112386# gdk_threads_add_timeout_full unavailable on older glibs --- fpicker/source/unx/gnome/SalGtkPicker.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fpicker') diff --git a/fpicker/source/unx/gnome/SalGtkPicker.cxx b/fpicker/source/unx/gnome/SalGtkPicker.cxx index 8bd28bb22d29..1a685e0981e6 100644 --- a/fpicker/source/unx/gnome/SalGtkPicker.cxx +++ b/fpicker/source/unx/gnome/SalGtkPicker.cxx @@ -175,7 +175,7 @@ void SAL_CALL RunDialog::windowOpened( const ::com::sun::star::lang::EventObject throw (::com::sun::star::uno::RuntimeException) { GdkThreadLock aLock; - gdk_threads_add_timeout_full(G_PRIORITY_HIGH_IDLE, 0, (GSourceFunc)canceldialog, this, NULL); + g_timeout_add_full(G_PRIORITY_HIGH_IDLE, 0, (GSourceFunc)canceldialog, this, NULL); } void RunDialog::cancel() -- cgit