sw/source/core/unocore/unocrsrhelper.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 26b8f771808424dbbe4ba8f6167a83dfeee153ba
Author:     Gabor Kelemen <kelemen.gab...@nisz.hu>
AuthorDate: Thu Sep 9 13:45:18 2021 +0200
Commit:     Gabor Kelemen <kelemen.gab...@nisz.hu>
CommitDate: Thu Sep 9 13:48:36 2021 +0200

    Fix build on Windows
    
    Somehow this change is needed to compile
    a784e613b992281a1559ecea81239d15a94ce79f
    on Windows, but not on Linux
    
    Change-Id: I5564a89c89fb714027006e4c898625d02fc92a5e
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121850
    Tested-by: Gabor Kelemen <kelemen.gab...@nisz.hu>
    Reviewed-by: Gabor Kelemen <kelemen.gab...@nisz.hu>

diff --git a/sw/source/core/unocore/unocrsrhelper.cxx 
b/sw/source/core/unocore/unocrsrhelper.cxx
index bce209509796..997ecf256d93 100644
--- a/sw/source/core/unocore/unocrsrhelper.cxx
+++ b/sw/source/core/unocore/unocrsrhelper.cxx
@@ -1425,8 +1425,8 @@ void makeTableRowRedline( SwTableLine& rTableLine,
             aPaM.SetMark();
             aPaM.GetMark()->nContent.Assign(aPaM.GetContentNode(), 0);
             makeRedline(aPaM, RedlineType::TableRowInsert == eType
-                    ? u"Insert"
-                    : u"Delete", rRedlineProperties);
+                    ? OUString("Insert")
+                    : OUString("Delete"), rRedlineProperties);
         }
         SwCursor aCursor( SwPosition(aInsPos), nullptr );
         pDoc->SetRowNotTracked( aCursor, aSetTracking );

Reply via email to