diff options
author | Henry Castro <hcastro@collabora.com> | 2015-12-23 23:40:01 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2015-12-23 23:40:01 -0400 |
commit | 76a98f9d135b97e89beff4627783292c71e02ba8 (patch) | |
tree | d9b65466cd08bf0ebc6bffed6fe1b8d0cc51c118 /sd/source/ui/func | |
parent | fab012e7ea6c84d0bd0867cefee0b5e9563abc53 (diff) |
sd: fix not necessary to pass default argument
Change-Id: I4f4277bdf6b513bfce58d96000c485fbdc82a1b1
Diffstat (limited to 'sd/source/ui/func')
-rw-r--r-- | sd/source/ui/func/fuinsert.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/func/fuinsert.cxx b/sd/source/ui/func/fuinsert.cxx index f9daadca6ed9..073efde5578e 100644 --- a/sd/source/ui/func/fuinsert.cxx +++ b/sd/source/ui/func/fuinsert.cxx @@ -170,7 +170,7 @@ void FuInsertGraphic::DoExecute( SfxRequest& rReq ) Rectangle aRect(aPos, mpWindow->GetOutputSizePixel() ); aPos = aRect.Center(); bool bMapModeWasEnabled(mpWindow->IsMapModeEnabled()); - mpWindow->EnableMapMode(true); + mpWindow->EnableMapMode(/*true*/); aPos = mpWindow->PixelToLogic(aPos); mpWindow->EnableMapMode(bMapModeWasEnabled); |