summaryrefslogtreecommitdiff
path: root/vcl/source/app
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-01-19 00:31:00 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-01-19 00:32:04 +0900
commiteed249f55522f3a9df0742430d1f738efafa00f4 (patch)
tree3aa71fe1106d367eff666c5d8c8daebaf01516fe /vcl/source/app
parent8600bc24bbc9029e92bea6102bff2921bc10b33e (diff)
sal_Bool to bool
Change-Id: I36603ac94b190a67b61b63b5ae0d981c09fcb270
Diffstat (limited to 'vcl/source/app')
-rw-r--r--vcl/source/app/svapp.cxx4
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 );
}
// -----------------------------------------------------------------------