diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-01-24 12:19:14 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-01-24 16:04:38 +0100 |
commit | df416b69199bb56c18a9493eeae6b67df3863a34 (patch) | |
tree | 749318a061bfe18d7f25fae483064cc58183167a /chart2 | |
parent | 206e0eec816042d5631edd73da18ed16b99ea04e (diff) |
rename LightControl3D back to Svx3DLightControl
Change-Id: I3e62bd55f195e9f652ddc21bff74f529a8678b5b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87337
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx | 2 | ||||
-rw-r--r-- | chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx b/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx index 3af93be0727b..ff2f4f46b132 100644 --- a/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx +++ b/chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx @@ -208,7 +208,7 @@ ThreeD_SceneIllumination_TabPage::ThreeD_SceneIllumination_TabPage(weld::Contain , m_xHoriScale(m_xBuilder->weld_scale("hori")) , m_xVertScale(m_xBuilder->weld_scale("vert")) , m_xBtn_Corner(m_xBuilder->weld_button("corner")) - , m_xPreview(new LightControl3D) + , m_xPreview(new Svx3DLightControl) , m_xPreviewWnd(new weld::CustomWeld(*m_xBuilder, "CTL_LIGHT_PREVIEW", *m_xPreview)) , m_xCtl_Preview(new SvxLightCtl3D(*m_xPreview, *m_xHoriScale, *m_xVertScale, *m_xBtn_Corner)) { diff --git a/chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx b/chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx index 46cbc279c7ac..78c84f23472e 100644 --- a/chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx +++ b/chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx @@ -85,7 +85,7 @@ private: std::unique_ptr<weld::Scale> m_xHoriScale; std::unique_ptr<weld::Scale> m_xVertScale; std::unique_ptr<weld::Button> m_xBtn_Corner; - std::unique_ptr<LightControl3D> m_xPreview; + std::unique_ptr<Svx3DLightControl> m_xPreview; std::unique_ptr<weld::CustomWeld> m_xPreviewWnd; std::unique_ptr<SvxLightCtl3D> m_xCtl_Preview; }; |