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

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Sat Sep 26 08:45:42 UTC 2020


 vcl/source/treelist/transfer2.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 4f963b6502674b73ecbc0ced201d15456724e977
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Sep 25 11:57:50 2020 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sat Sep 26 10:44:57 2020 +0200

    Fix typo in code
    
    It passed "make check" on Linux
    
    Change-Id: I183c7fb15b37cfe6f691c6c75196958e6148ffac
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103450
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/vcl/source/treelist/transfer2.cxx b/vcl/source/treelist/transfer2.cxx
index cb1cd18cd114..73d9b30624e7 100644
--- a/vcl/source/treelist/transfer2.cxx
+++ b/vcl/source/treelist/transfer2.cxx
@@ -317,7 +317,7 @@ struct TDataCntnrEntry_Impl
 struct TransferDataContainer_Impl
 {
     std::vector< TDataCntnrEntry_Impl > aFmtList;
-    Link<sal_Int8,void> aFinshedLnk;
+    Link<sal_Int8,void> aFinishedLnk;
     std::unique_ptr<INetBookmark> pBookmk;
 
     TransferDataContainer_Impl()
@@ -449,14 +449,14 @@ void TransferDataContainer::StartDrag(
         vcl::Window* pWindow, sal_Int8 nDragSourceActions,
         const Link<sal_Int8,void>& rLnk )
 {
-    pImpl->aFinshedLnk = rLnk;
+    pImpl->aFinishedLnk = rLnk;
     TransferableHelper::StartDrag( pWindow, nDragSourceActions );
 }
 
 
 void TransferDataContainer::DragFinished( sal_Int8 nDropAction )
 {
-    pImpl->aFinshedLnk.Call( nDropAction );
+    pImpl->aFinishedLnk.Call( nDropAction );
 }
 
 Reference<XClipboard> GetSystemClipboard()


More information about the Libreoffice-commits mailing list