diff options
author | Caolán McNamara <cmc@openoffice.org> | 2010-06-18 08:50:11 +0100 |
---|---|---|
committer | Caolán McNamara <cmc@openoffice.org> | 2010-06-18 08:50:11 +0100 |
commit | a03b1ebebf434ff1fe71cd83b8ac31a7b699296b (patch) | |
tree | 0e193baf4eb715ea8768a99f0e5151cabe9c37e6 /fpicker | |
parent | 59e28862922d58883e74c6a87670a085b4a1df76 (diff) |
gtkfpicker9: #i112386# gdk_threads_add_timeout_full unavailable on older glibs
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/unx/gnome/SalGtkPicker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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() |