diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 17:17:12 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 18:24:03 +0100 |
commit | 101e5cc49c413bede477c0f44b2256e087f7db8c (patch) | |
tree | d0a2150de095e7f4465623102d910db6cc9ed7f6 /svtools/source/brwbox | |
parent | b184636e1ccbc6560430a6a3e44fe56d2014c8f7 (diff) |
bool improvements
Change-Id: I85faf4e3fcab6763af11eb6a4082820e88bea1ca
Diffstat (limited to 'svtools/source/brwbox')
-rw-r--r-- | svtools/source/brwbox/editbrowsebox.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/brwbox/editbrowsebox.cxx b/svtools/source/brwbox/editbrowsebox.cxx index 6488120b3b30..72cad0faafa2 100644 --- a/svtools/source/brwbox/editbrowsebox.cxx +++ b/svtools/source/brwbox/editbrowsebox.cxx @@ -1339,7 +1339,7 @@ namespace svt //------------------------------------------------------------------------------ CellController::CellController(Control* pW) :pWindow( pW ) - ,bSuspended( sal_True ) + ,bSuspended( true ) { DBG_CTOR(CellController,NULL); @@ -1363,7 +1363,7 @@ namespace svt CommitModifications(); GetWindow().Hide( ); GetWindow().Disable( ); - bSuspended = sal_True; + bSuspended = true; } } @@ -1375,7 +1375,7 @@ namespace svt { GetWindow().Enable( ); GetWindow().Show( ); - bSuspended = sal_False; + bSuspended = false; } } |