diff options
Diffstat (limited to 'vcl/source/app/svapp.cxx')
-rw-r--r-- | vcl/source/app/svapp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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 ); } // ----------------------------------------------------------------------- |