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

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Tue Feb 18 08:55:55 UTC 2020


 include/svtools/editbrowsebox.hxx     |    6 +++---
 svtools/source/brwbox/ebbcontrols.cxx |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit be93e5b27371a97009e5587507a0c5147e882632
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Mon Feb 17 20:49:29 2020 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Tue Feb 18 09:55:18 2020 +0100

    VclMultiLineEdit is sufficient here
    
    Change-Id: Ibacffee0520d7525d552820713f3d4d620e1f156
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88890
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/include/svtools/editbrowsebox.hxx b/include/svtools/editbrowsebox.hxx
index 0be5603898e2..8b6d976cc5da 100644
--- a/include/svtools/editbrowsebox.hxx
+++ b/include/svtools/editbrowsebox.hxx
@@ -30,7 +30,7 @@
 
 #include <svtools/brwbox.hxx>
 #include <svtools/brwhead.hxx>
-#include <svtools/svmedit.hxx>
+#include <vcl/vclmedit.hxx>
 #include <o3tl/typed_flags_set.hxx>
 
 class Button;
@@ -188,11 +188,11 @@ namespace svt
 
     /** a multi line edit which can be used in a cell of an EditBrowseBox
     */
-    class SVT_DLLPUBLIC MultiLineTextCell final : public MultiLineEdit
+    class SVT_DLLPUBLIC MultiLineTextCell final : public VclMultiLineEdit
     {
     public:
         MultiLineTextCell( vcl::Window* _pParent, WinBits _nStyle )
-            :MultiLineEdit( _pParent, _nStyle )
+            : VclMultiLineEdit( _pParent, _nStyle )
         {
         }
 
diff --git a/svtools/source/brwbox/ebbcontrols.cxx b/svtools/source/brwbox/ebbcontrols.cxx
index e928fef8bd05..27261014908a 100644
--- a/svtools/source/brwbox/ebbcontrols.cxx
+++ b/svtools/source/brwbox/ebbcontrols.cxx
@@ -532,7 +532,7 @@ namespace svt
     void MultiLineTextCell::Modify()
     {
         GetTextEngine()->SetModified( true );
-        MultiLineEdit::Modify();
+        VclMultiLineEdit::Modify();
     }
 
 
@@ -597,7 +597,7 @@ namespace svt
                 }
             }
         }
-        return MultiLineEdit::PreNotify( rNEvt );
+        return VclMultiLineEdit::PreNotify( rNEvt );
     }
 
 


More information about the Libreoffice-commits mailing list