diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-09-26 13:49:08 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-09-26 13:49:08 +0200 |
commit | 171e4298422f91c47d6ce71599e86376083ea3aa (patch) | |
tree | 9be960a58919a02f48a680c3139b14673959bd53 | |
parent | bacc9ed75e4e290ed0909445dfd8ec1e659fde97 (diff) |
MiscSettings::SetEnableATToolSupport: adapt WNT code to bool
Change-Id: I21e7e270c33f525e8883232b98cd728475c35b40
-rw-r--r-- | vcl/source/app/settings.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx index c68f0256c040..4eb63b582476 100644 --- a/vcl/source/app/settings.cxx +++ b/vcl/source/app/settings.cxx @@ -1036,7 +1036,7 @@ void MiscSettings::SetEnableATToolSupport( sal_Bool bEnable ) { if ( bEnable != mpData->mnEnableATT ) { - sal_Bool bDummy; + bool bDummy; if( bEnable && !ImplInitAccessBridge(false, bDummy) ) return; |