From 7ae4102f171c5f0d452fa78c5c17722bc9649fc5 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 30 Apr 2014 11:46:15 +0200 Subject: extensions: sal_Bool->bool Change-Id: I1730f99c08690138e9aa7aba54304fd7bc51491d --- extensions/source/propctrlr/sqlcommanddesign.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'extensions/source/propctrlr/sqlcommanddesign.hxx') diff --git a/extensions/source/propctrlr/sqlcommanddesign.hxx b/extensions/source/propctrlr/sqlcommanddesign.hxx index 1dfc2067a9e0..8f3208ac7e88 100644 --- a/extensions/source/propctrlr/sqlcommanddesign.hxx +++ b/extensions/source/propctrlr/sqlcommanddesign.hxx @@ -195,12 +195,12 @@ namespace pcr /// retrieves the current SQL command of the component virtual OUString getSQLCommand() const = 0; /// retrieves the current value of the EscapeProcessing property of the component - virtual sal_Bool getEscapeProcessing() const = 0; + virtual sal_Bool getEscapeProcessing() const = 0; /// sets a new SQL command - virtual void setSQLCommand( const OUString& _rCommand ) const = 0; + virtual void setSQLCommand( const OUString& _rCommand ) const = 0; /// sets a new EscapeProcessing property value - virtual void setEscapeProcessing( const sal_Bool _bEscapeProcessing ) const = 0; + virtual void setEscapeProcessing( const sal_Bool _bEscapeProcessing ) const = 0; virtual ~ISQLCommandAdapter(); }; -- cgit