From eed249f55522f3a9df0742430d1f738efafa00f4 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Sat, 19 Jan 2013 00:31:00 +0900 Subject: sal_Bool to bool Change-Id: I36603ac94b190a67b61b63b5ae0d981c09fcb270 --- vcl/source/app/svapp.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vcl/source/app/svapp.cxx') diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index 73530fd0e11d..b8d35a33a66e 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -539,9 +539,9 @@ sal_uInt16 Application::GetDispatchLevel() // ----------------------------------------------------------------------- -sal_Bool Application::AnyInput( sal_uInt16 nType ) +bool Application::AnyInput( sal_uInt16 nType ) { - return (sal_Bool)ImplGetSVData()->mpDefInst->AnyInput( nType ); + return ImplGetSVData()->mpDefInst->AnyInput( nType ); } // ----------------------------------------------------------------------- -- cgit