summaryrefslogtreecommitdiff
path: root/editeng/source/uno/unoviwou.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-28 14:27:20 +0200
committerNoel Grandin <noel@peralex.com>2014-03-03 08:59:37 +0200
commit0f60ab5ebf5ab7a7e4bd92cd8a34e86f27474131 (patch)
treeb7789e867917d1bb6d29e36d895658791482ff1a /editeng/source/uno/unoviwou.cxx
parent074a2af8bc26d5d1ba3ef01016df7d6d122cfb9f (diff)
editeng: sal_Bool->bool
Change-Id: I4fc276e320294d57eb667b6db8e5eff078bc28b3
Diffstat (limited to 'editeng/source/uno/unoviwou.cxx')
-rw-r--r--editeng/source/uno/unoviwou.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/editeng/source/uno/unoviwou.cxx b/editeng/source/uno/unoviwou.cxx
index a3554e572995..106002919d30 100644
--- a/editeng/source/uno/unoviwou.cxx
+++ b/editeng/source/uno/unoviwou.cxx
@@ -124,34 +124,34 @@ Point SvxDrawOutlinerViewForwarder::PixelToLogic( const Point& rPoint, const Map
return Point();
}
-sal_Bool SvxDrawOutlinerViewForwarder::GetSelection( ESelection& rSelection ) const
+bool SvxDrawOutlinerViewForwarder::GetSelection( ESelection& rSelection ) const
{
rSelection = mrOutlinerView.GetSelection();
- return sal_True;
+ return true;
}
-sal_Bool SvxDrawOutlinerViewForwarder::SetSelection( const ESelection& rSelection )
+bool SvxDrawOutlinerViewForwarder::SetSelection( const ESelection& rSelection )
{
mrOutlinerView.SetSelection( rSelection );
- return sal_True;
+ return true;
}
-sal_Bool SvxDrawOutlinerViewForwarder::Copy()
+bool SvxDrawOutlinerViewForwarder::Copy()
{
mrOutlinerView.Copy();
- return sal_True;
+ return true;
}
-sal_Bool SvxDrawOutlinerViewForwarder::Cut()
+bool SvxDrawOutlinerViewForwarder::Cut()
{
mrOutlinerView.Cut();
- return sal_True;
+ return true;
}
-sal_Bool SvxDrawOutlinerViewForwarder::Paste()
+bool SvxDrawOutlinerViewForwarder::Paste()
{
mrOutlinerView.Paste();
- return sal_True;
+ return true;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */