diff options
author | Sven Jacobi <sj@openoffice.org> | 2007-06-13 08:07:51 +0000 |
---|---|---|
committer | Sven Jacobi <sj@openoffice.org> | 2007-06-13 08:07:51 +0000 |
commit | bae2876fd3296fd0f40b56c1896bc6b481b2f35c (patch) | |
tree | 9c51c38bac78c06e0f77bc6a0f9e695620401dac /sdext | |
parent | 7c3d3785d1c6b14a0d94a084ae4524a42c211df9 (diff) |
#i78171# fixed crash when clicking next after canceling the file open dialog
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/minimizer/optimizerdialog.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sdext/source/minimizer/optimizerdialog.cxx b/sdext/source/minimizer/optimizerdialog.cxx index ac0d9c06bf18..48e60a99aaf8 100644 --- a/sdext/source/minimizer/optimizerdialog.cxx +++ b/sdext/source/minimizer/optimizerdialog.cxx @@ -4,9 +4,9 @@ * * $RCSfile: optimizerdialog.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: sj $ $Date: 2007-05-24 10:08:36 $ + * last change: $Author: sj $ $Date: 2007-06-13 09:07:51 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -751,7 +751,7 @@ void ActionListener::actionPerformed( const ActionEvent& rEvent ) { mrOptimizerDialog.setControlProperty( TKGet( TK_btnNavHelp ), TKGet( TK_Enabled ), Any( sal_True ) ); mrOptimizerDialog.setControlProperty( TKGet( TK_btnNavBack ), TKGet( TK_Enabled ), Any( sal_True ) ); - mrOptimizerDialog.setControlProperty( TKGet( TK_btnNavNext ), TKGet( TK_Enabled ), Any( sal_True ) ); + mrOptimizerDialog.setControlProperty( TKGet( TK_btnNavNext ), TKGet( TK_Enabled ), Any( sal_False ) ); mrOptimizerDialog.setControlProperty( TKGet( TK_btnNavFinish ), TKGet( TK_Enabled ), Any( sal_True ) ); mrOptimizerDialog.setControlProperty( TKGet( TK_btnNavCancel ), TKGet( TK_Enabled ), Any( sal_True ) ); mrOptimizerDialog.EnablePage( ITEM_ID_SUMMARY ); |