diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-01-19 00:31:00 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-01-19 00:32:04 +0900 |
commit | eed249f55522f3a9df0742430d1f738efafa00f4 (patch) | |
tree | 3aa71fe1106d367eff666c5d8c8daebaf01516fe /vcl/source/app | |
parent | 8600bc24bbc9029e92bea6102bff2921bc10b33e (diff) |
sal_Bool to bool
Change-Id: I36603ac94b190a67b61b63b5ae0d981c09fcb270
Diffstat (limited to 'vcl/source/app')
-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 ); } // ----------------------------------------------------------------------- |