[Libreoffice-commits] core.git: svtools/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Tue Sep 18 08:03:25 UTC 2018


 svtools/source/dialogs/PlaceEditDialog.cxx |   18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

New commits:
commit f0a65dbba76359a2c6440329e1736a7eca24090c
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Mon Sep 17 14:55:33 2018 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Tue Sep 18 10:03:03 2018 +0200

    crash editing previously added remote cmis
    
    http://crashreport.libreoffice.org/stats/crash_details/61ba172a-ce27-46d7-8493-dc7cb688b10a
    
    presumably since...
    
    commit 767188fd1b1e1f504864f9489076283ebc413625
    Author: Caolán McNamara <caolanm at redhat.com>
    Date:   Thu May 17 16:21:02 2018 +0100
    
        make PlaceEditDialog a bit more ordinary
    
    which missed the other ctor
    
    Change-Id: Iece359b94afdd0d2c48afe7f301e7178180f1dc5
    Reviewed-on: https://gerrit.libreoffice.org/60586
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/svtools/source/dialogs/PlaceEditDialog.cxx b/svtools/source/dialogs/PlaceEditDialog.cxx
index 1dd17fa27bdd..069a165dc6aa 100644
--- a/svtools/source/dialogs/PlaceEditDialog.cxx
+++ b/svtools/source/dialogs/PlaceEditDialog.cxx
@@ -87,6 +87,24 @@ PlaceEditDialog::PlaceEditDialog(weld::Window* pParent, const std::shared_ptr<Pl
     , m_xEDPassword(m_xBuilder->weld_entry("password"))
     , m_xFTPasswordLabel(m_xBuilder->weld_label("passwordLabel"))
     , m_xTypeGrid(m_xBuilder->weld_widget("TypeGrid"))
+
+    , m_xRepositoryBox(m_xBuilder->weld_widget("RepositoryDetails"))
+    , m_xFTRepository(m_xBuilder->weld_label("repositoryLabel"))
+    , m_xLBRepository(m_xBuilder->weld_combo_box("repositories"))
+
+    , m_xEDShare(m_xBuilder->weld_entry("share"))
+    , m_xFTShare(m_xBuilder->weld_label("shareLabel"))
+
+    , m_xDetailsGrid(m_xBuilder->weld_widget("Details"))
+    , m_xHostBox(m_xBuilder->weld_widget("HostDetails"))
+    , m_xEDHost(m_xBuilder->weld_entry("host"))
+    , m_xFTHost(m_xBuilder->weld_label("hostLabel"))
+    , m_xEDPort(m_xBuilder->weld_spin_button("port"))
+    , m_xFTPort(m_xBuilder->weld_label("portLabel"))
+    , m_xEDRoot(m_xBuilder->weld_entry("path"))
+    , m_xFTRoot(m_xBuilder->weld_label("pathLabel"))
+
+    , m_xCBDavs(m_xBuilder->weld_check_button("webdavs"))
 {
     m_xEDPassword->hide();
     m_xFTPasswordLabel->hide();


More information about the Libreoffice-commits mailing list