summaryrefslogtreecommitdiff
path: root/vcl/unx/gtk/a11y/atktextattributes.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/unx/gtk/a11y/atktextattributes.cxx')
-rw-r--r--vcl/unx/gtk/a11y/atktextattributes.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/gtk/a11y/atktextattributes.cxx b/vcl/unx/gtk/a11y/atktextattributes.cxx
index 365f1c9cdd2e..502d30ef125c 100644
--- a/vcl/unx/gtk/a11y/atktextattributes.cxx
+++ b/vcl/unx/gtk/a11y/atktextattributes.cxx
@@ -600,12 +600,12 @@ Bool2String( const uno::Any& rAny )
static bool
String2Bool( uno::Any& rAny, const gchar * value )
{
- sal_Bool bValue;
+ bool bValue;
if( strncmp( value, STRNCMP_PARAM( "true" ) ) )
- bValue = sal_True;
+ bValue = true;
else if( strncmp( value, STRNCMP_PARAM( "false" ) ) )
- bValue = sal_False;
+ bValue = false;
else
return false;