diff options
author | Thorsten Behrens <thb@documentfoundation.org> | 2015-03-03 00:53:52 +0100 |
---|---|---|
committer | Thorsten Behrens <thb@documentfoundation.org> | 2015-03-03 00:56:34 +0100 |
commit | 8acdf876c52240c5f3c6d428162b15d4e89f32a7 (patch) | |
tree | 2bb099e868c3c88b4ca22aea0c4d953d1a9e7d20 | |
parent | f2cb2c6f6702a9e1488690e71395f9653900ce16 (diff) |
Fix initializer copy'n'paste mistake
aVRP and aVPN were initialized through the call to the same function
Change-Id: I8ebc2d474521a4cedb5ed72bc14c8596887ac740
-rw-r--r-- | svx/source/sdr/contact/viewcontactofe3dscene.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/sdr/contact/viewcontactofe3dscene.cxx b/svx/source/sdr/contact/viewcontactofe3dscene.cxx index dfd4e660fd28..36f24dad7b16 100644 --- a/svx/source/sdr/contact/viewcontactofe3dscene.cxx +++ b/svx/source/sdr/contact/viewcontactofe3dscene.cxx @@ -175,7 +175,7 @@ void ViewContactOfE3dScene::createViewInformation3D(const basegfx::B3DRange& rCo // calculate orientation from VRP, VPN and VUV const B3dCamera& rSceneCamera = GetE3dScene().GetCameraSet(); const basegfx::B3DPoint aVRP(rSceneCamera.GetVRP()); - const basegfx::B3DVector aVPN(rSceneCamera.GetVRP()); + const basegfx::B3DVector aVPN(rSceneCamera.GetVPN()); const basegfx::B3DVector aVUV(rSceneCamera.GetVUV()); aOrientation.orientation(aVRP, aVPN, aVUV); |