summaryrefslogtreecommitdiff
path: root/svx/source/engine3d
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-07-05 16:25:03 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-07-07 20:00:16 +0000
commit009851223b5ced4ed2662af2e2ae81c0f9200e45 (patch)
treea8ab339589ea23b98513d394eabc4f135e69ccae /svx/source/engine3d
parent35b42a9d1282a92dbc9a7fbc51d279812070688c (diff)
module svl: all String and some bool and related clean-up
Change-Id: I36eb559fa58dbe75384b7119c788af0048813aed Reviewed-on: https://gerrit.libreoffice.org/4733 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'svx/source/engine3d')
-rw-r--r--svx/source/engine3d/e3dundo.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/svx/source/engine3d/e3dundo.cxx b/svx/source/engine3d/e3dundo.cxx
index 14934f734e3f..38c287fde338 100644
--- a/svx/source/engine3d/e3dundo.cxx
+++ b/svx/source/engine3d/e3dundo.cxx
@@ -34,9 +34,9 @@ E3dUndoAction::~E3dUndoAction ()
// Repeat does not exist
-sal_Bool E3dUndoAction::CanRepeat(SfxRepeatTarget&) const
+bool E3dUndoAction::CanRepeat(SfxRepeatTarget&) const
{
- return sal_False;
+ return false;
}
/************************************************************************/
@@ -74,13 +74,13 @@ void E3dRotateUndoAction::Redo ()
TYPEINIT1(E3dAttributesUndoAction, SdrUndoAction);
E3dAttributesUndoAction::E3dAttributesUndoAction( SdrModel &rModel,
- E3dObject* pInObject,
- const SfxItemSet& rNewSet,
- const SfxItemSet& rOldSet)
-: SdrUndoAction( rModel ),
- pObject ( pInObject ),
- aNewSet ( rNewSet ),
- aOldSet ( rOldSet )
+ E3dObject* pInObject,
+ const SfxItemSet& rNewSet,
+ const SfxItemSet& rOldSet)
+ : SdrUndoAction( rModel )
+ , pObject ( pInObject )
+ , aNewSet ( rNewSet )
+ , aOldSet ( rOldSet )
{
}
@@ -105,9 +105,9 @@ void E3dAttributesUndoAction::Redo()
// Multiple Undo is not possible
-sal_Bool E3dAttributesUndoAction::CanRepeat(SfxRepeatTarget& /*rView*/) const
+bool E3dAttributesUndoAction::CanRepeat(SfxRepeatTarget& /*rView*/) const
{
- return sal_False;
+ return false;
}
// Multiple Undo is not possible