From 050d7fc852f1539f16a358c03e4e8ffb57891c4d Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 3 Mar 2014 11:46:22 +0200 Subject: editeng: sal_Bool->bool Change-Id: I7a7b5e9ae1762cace1f87b379b32398b231745fd --- sw/source/core/view/vnew.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sw') diff --git a/sw/source/core/view/vnew.cxx b/sw/source/core/view/vnew.cxx index c509b3f29033..4f195b137789 100644 --- a/sw/source/core/view/vnew.cxx +++ b/sw/source/core/view/vnew.cxx @@ -362,7 +362,7 @@ SwViewShell::~SwViewShell() sal_Bool SwViewShell::HasDrawView() const { - return Imp() && Imp()->HasDrawView(); + return (Imp() && Imp()->HasDrawView()) ? 1 : 0; } void SwViewShell::MakeDrawView() -- cgit