summaryrefslogtreecommitdiff
path: root/include/svx/camera3d.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-09-01 12:44:03 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-09-02 07:32:17 +0000
commit175c49baef5d8dd3f7a28fec5a3dce956303dc42 (patch)
treec354cdcdd75bee54a9fbf6895fe9f801a107c27f /include/svx/camera3d.hxx
parenta8a7b7114d96b2013b00e9bc0ced81aad5495457 (diff)
loplugin:countusersofdefaultparams
Change-Id: I2ed581e58523ac8b52aa520f7a02f69f408665fe Reviewed-on: https://gerrit.libreoffice.org/28587 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svx/camera3d.hxx')
-rw-r--r--include/svx/camera3d.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/camera3d.hxx b/include/svx/camera3d.hxx
index 10fbbf6044d9..2d8021a64aa4 100644
--- a/include/svx/camera3d.hxx
+++ b/include/svx/camera3d.hxx
@@ -50,7 +50,7 @@ class SAL_WARN_UNUSED SVX_DLLPUBLIC Camera3D : public Viewport3D
Camera3D();
void SetDefaults(const basegfx::B3DPoint& rPos, const basegfx::B3DPoint& rLookAt,
- double fFocalLen = 35.0, double fBankAng = 0);
+ double fFocalLen, double fBankAng = 0);
void SetViewWindow(double fX, double fY, double fW, double fH);
@@ -66,7 +66,7 @@ class SAL_WARN_UNUSED SVX_DLLPUBLIC Camera3D : public Viewport3D
// Bank angle links/rechts
void SetBankAngle(double fAngle);
- void SetAutoAdjustProjection(bool bAdjust = true)
+ void SetAutoAdjustProjection(bool bAdjust)
{ bAutoAdjustProjection = bAdjust; }
};