diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-07-12 10:59:39 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-07-12 10:59:39 +0000 |
commit | 8a7f13b5943db4a3cf56ebe6fd88cd87476841c4 (patch) | |
tree | ad5f6fa277133293bdb0c85a88a882bde0fb1307 /fpicker/source/unx/gnome | |
parent | b3875328d45acd94ee06ad274c5cbea5d3b2dafe (diff) |
INTEGRATION: CWS fpicker4 (1.4.8); FILE MERGED
2005/06/01 11:05:22 cmc 1.4.8.1: #i44627# UnYield and lock variable
Diffstat (limited to 'fpicker/source/unx/gnome')
-rw-r--r-- | fpicker/source/unx/gnome/SalGtkPicker.hxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/fpicker/source/unx/gnome/SalGtkPicker.hxx b/fpicker/source/unx/gnome/SalGtkPicker.hxx index 3fcdb85c7a48..d1bf2e130953 100644 --- a/fpicker/source/unx/gnome/SalGtkPicker.hxx +++ b/fpicker/source/unx/gnome/SalGtkPicker.hxx @@ -2,9 +2,9 @@ * * $RCSfile: SalGtkPicker.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: obo $ $Date: 2005-05-03 13:48:40 $ + * last change: $Author: kz $ $Date: 2005-07-12 11:59:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -117,12 +117,13 @@ class SalGtkPicker class RunDialog { private: - bool bFinished; + bool mbFinished; + osl::Mutex maLock; gint mnStatus; GtkWidget *m_pDialog; public: void run(); - RunDialog(GtkWidget *pDialog) : bFinished(false), m_pDialog(pDialog) { } + RunDialog(GtkWidget *pDialog) : mbFinished(false), m_pDialog(pDialog) { } gint runandwaitforresult(); }; |