summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-24 11:13:09 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-24 11:13:42 +0100
commit146c7c5c89d9ce26c3de951ff049d36df1b5857b (patch)
treed66d72cb77002c96f528790f88012617243ccbf3 /forms
parent569756aaf4606313297eace88b3ad5a6f57d8329 (diff)
toolkit: sal_Bool -> bool
Change-Id: I5153c4413004d1b50cc503b3e70657bc831a5793
Diffstat (limited to 'forms')
-rw-r--r--forms/source/richtext/richtextcontrol.cxx6
-rw-r--r--forms/source/richtext/richtextcontrol.hxx2
-rw-r--r--forms/source/solar/component/navbarcontrol.cxx4
3 files changed, 6 insertions, 6 deletions
diff --git a/forms/source/richtext/richtextcontrol.cxx b/forms/source/richtext/richtextcontrol.cxx
index 9a942ea66ed0..c238cd635ee9 100644
--- a/forms/source/richtext/richtextcontrol.cxx
+++ b/forms/source/richtext/richtextcontrol.cxx
@@ -198,7 +198,7 @@ namespace frm
if (!getPeer().is())
{
- mbCreatingPeer = sal_True;
+ mbCreatingPeer = true;
// determine the VLC window for the parent
Window* pParentWin = NULL;
@@ -242,7 +242,7 @@ namespace frm
peerCreated();
}
- mbCreatingPeer = sal_False;
+ mbCreatingPeer = false;
OControl::initFormControlPeer( getPeer() );
}
@@ -295,7 +295,7 @@ namespace frm
}
- sal_Bool ORichTextControl::requiresNewPeer( const OUString& _rPropertyName ) const
+ bool ORichTextControl::requiresNewPeer( const OUString& _rPropertyName ) const
{
return UnoControl::requiresNewPeer( _rPropertyName ) || _rPropertyName.equals( PROPERTY_RICH_TEXT );
}
diff --git a/forms/source/richtext/richtextcontrol.hxx b/forms/source/richtext/richtextcontrol.hxx
index fb1a1f669384..6476d23700af 100644
--- a/forms/source/richtext/richtextcontrol.hxx
+++ b/forms/source/richtext/richtextcontrol.hxx
@@ -80,7 +80,7 @@ namespace frm
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > > SAL_CALL queryDispatches( const ::com::sun::star::uno::Sequence< ::com::sun::star::frame::DispatchDescriptor >& Requests ) throw (::com::sun::star::uno::RuntimeException);
// UnoControl
- virtual sal_Bool requiresNewPeer( const OUString& _rPropertyName ) const;
+ virtual bool requiresNewPeer( const OUString& _rPropertyName ) const;
};
//==================================================================
diff --git a/forms/source/solar/component/navbarcontrol.cxx b/forms/source/solar/component/navbarcontrol.cxx
index 93e7ddbec2ba..c07ede67aa3d 100644
--- a/forms/source/solar/component/navbarcontrol.cxx
+++ b/forms/source/solar/component/navbarcontrol.cxx
@@ -130,7 +130,7 @@ namespace frm
if (!getPeer().is())
{
- mbCreatingPeer = sal_True;
+ mbCreatingPeer = true;
// determine the VLC window for the parent
Window* pParentWin = NULL;
@@ -171,7 +171,7 @@ namespace frm
peerCreated();
- mbCreatingPeer = sal_False;
+ mbCreatingPeer = false;
OControl::initFormControlPeer( getPeer() );
}