diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-19 10:38:17 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-19 13:05:10 +0200 |
commit | b2460d7eefcd390e9d2ebd56dce35b08f6300af6 (patch) | |
tree | 211ee5d7ecb59e8cecab34e272d361ce765703c7 /sc | |
parent | 37b48385d8cc654d965c52a5838c2de124032057 (diff) |
sal_Bool->bool
Change-Id: I8991967ea122d73b83216573c5e014c4dd933fb9
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/undobase.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/undo/undobase.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/inc/undobase.hxx b/sc/source/ui/inc/undobase.hxx index 5c9df4bf9f62..87d602825362 100644 --- a/sc/source/ui/inc/undobase.hxx +++ b/sc/source/ui/inc/undobase.hxx @@ -85,7 +85,7 @@ protected: // void BeginRedo(); void EndRedo(); - sal_Bool AdjustHeight(); + bool AdjustHeight(); void ShowBlock(); }; diff --git a/sc/source/ui/undo/undobase.cxx b/sc/source/ui/undo/undobase.cxx index 713c219d347b..28daae102aad 100644 --- a/sc/source/ui/undo/undobase.cxx +++ b/sc/source/ui/undo/undobase.cxx @@ -211,7 +211,7 @@ void ScBlockUndo::EndRedo() ScSimpleUndo::EndRedo(); } -sal_Bool ScBlockUndo::AdjustHeight() +bool ScBlockUndo::AdjustHeight() { ScDocument* pDoc = pDocShell->GetDocument(); |