diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-17 17:04:22 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-17 18:45:14 +0100 |
commit | 20223e2374bb6a966e44471c224d22d968d19025 (patch) | |
tree | e7b935638da81c3df30a3fca00e39c8769c2a515 /sfx2/source/view/viewfrm2.cxx | |
parent | 5169abbac92f30b950ab19c2c8e285c47fb1f0d7 (diff) |
bool improvements
Change-Id: I9f5564100aa64ff4940dd93a81ff5a8d8edc7a07
Diffstat (limited to 'sfx2/source/view/viewfrm2.cxx')
-rw-r--r-- | sfx2/source/view/viewfrm2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/view/viewfrm2.cxx b/sfx2/source/view/viewfrm2.cxx index 02ca4f0fcdb4..cba1a79b0aea 100644 --- a/sfx2/source/view/viewfrm2.cxx +++ b/sfx2/source/view/viewfrm2.cxx @@ -243,7 +243,7 @@ void SfxViewFrame::Exec_Impl(SfxRequest &rReq ) { // More Views on the same Document? SfxObjectShell *pDocSh = GetObjectShell(); - int bOther = sal_False; + bool bOther = false; for ( const SfxViewFrame* pFrame = SfxViewFrame::GetFirst( pDocSh ); !bOther && pFrame; pFrame = SfxViewFrame::GetNext( *pFrame, pDocSh ) ) |