diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-03-07 15:14:03 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-03-07 15:14:03 +0000 |
commit | a5ad23285a2970218825453f4255528a9f84f665 (patch) | |
tree | d78c96f93d9e8bf38d4f12eacbf6a71e49504cbe /fpicker/source | |
parent | 7309b939e007e8a520961148bfdc163b31fe5d79 (diff) |
INTEGRATION: CWS unifysound01_DEV300 (1.14.84); FILE MERGED
2007/08/10 11:03:44 cmc 1.14.84.1: #i80567# Add a play button the gtk fpicker
Diffstat (limited to 'fpicker/source')
-rw-r--r-- | fpicker/source/unx/gnome/SalGtkPicker.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fpicker/source/unx/gnome/SalGtkPicker.cxx b/fpicker/source/unx/gnome/SalGtkPicker.cxx index cd6f68050d9e..a3d70c981de5 100644 --- a/fpicker/source/unx/gnome/SalGtkPicker.cxx +++ b/fpicker/source/unx/gnome/SalGtkPicker.cxx @@ -4,9 +4,9 @@ * * $RCSfile: SalGtkPicker.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: hr $ $Date: 2006-10-24 15:02:38 $ + * last change: $Author: kz $ $Date: 2008-03-07 16:14:03 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -131,7 +131,8 @@ gboolean rundialog(RunDialog *pDialog) void RunDialog::run() { mnStatus = gtk_dialog_run( GTK_DIALOG( m_pDialog ) ); - gtk_widget_hide( m_pDialog ); + if (mnStatus != 1) //PLAY + gtk_widget_hide( m_pDialog ); maLock.acquire(); mbFinished = true; |