From 61a2c9fbacebb15511dfc233ffbd25937ea2d04f Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 16 Aug 2013 16:48:08 +0300 Subject: WaE: C4805: '==' : unsafe mix of type 'bool' and type 'sal_Bool' in operation Change-Id: Ib4da1e4f488971d7508054159df3e277daea7e5f --- sfx2/source/view/viewfrm.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sfx2/source/view') 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; -- cgit