summaryrefslogtreecommitdiff
path: root/sfx2/source/view
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2013-08-16 16:48:08 +0300
committerTor Lillqvist <tlillqvist@suse.com>2013-08-16 17:11:47 +0300
commit61a2c9fbacebb15511dfc233ffbd25937ea2d04f (patch)
tree4f7b5f7ef2b08d43dbaa62ecbd3c208871438670 /sfx2/source/view
parentc66062aacb521037eb5af9c32c94c33df9cd69a7 (diff)
WaE: C4805: '==' : unsafe mix of type 'bool' and type 'sal_Bool' in operation
Change-Id: Ib4da1e4f488971d7508054159df3e277daea7e5f
Diffstat (limited to 'sfx2/source/view')
-rw-r--r--sfx2/source/view/viewfrm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx
index 79f6314465cf..e1fcdc4020db 100644
--- a/sfx2/source/view/viewfrm.cxx
+++ b/sfx2/source/view/viewfrm.cxx
@@ -2791,7 +2791,7 @@ void SfxViewFrame::MiscExec_Impl( SfxRequest& rReq )
if (xSupplier.is())
xRecorder = xSupplier->getDispatchRecorder();
- sal_Bool bIsRecording = xRecorder.is();
+ bool bIsRecording = xRecorder.is();
SFX_REQUEST_ARG( rReq, pItem, SfxBoolItem, SID_RECORDMACRO, sal_False);
if ( pItem && pItem->GetValue() == bIsRecording )
return;