wizards/source/access2base/Trace.xba | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
New commits: commit b56c50cac3ab92de27a67e2eb0c8ed74f73f5664 Author: Jean-Pierre Ledure <[email protected]> AuthorDate: Sat Apr 13 11:46:24 2019 +0200 Commit: Jean-Pierre Ledure <[email protected]> CommitDate: Sat Apr 13 12:41:34 2019 +0200 Access2Base - FIX Display dlgTrace dialog tooltip in user language Labels were present for each language in L10N module but applied nowhere. diff --git a/wizards/source/access2base/Trace.xba b/wizards/source/access2base/Trace.xba index 8c5e3348b3be..a1d214bc4a94 100644 --- a/wizards/source/access2base/Trace.xba +++ b/wizards/source/access2base/Trace.xba @@ -36,8 +36,9 @@ Dim sLineBreak As String, oTraceDialog As Object sLineBreak = vbNewLine Set oTraceDialog = CreateUnoDialog(Utils._GetDialogLib().dlgTrace) - oTraceDialog.Title = _GetLabel("DLGTRACE_TITLE") ' HelpText ??? - + oTraceDialog.Title = _GetLabel("DLGTRACE_TITLE") + oTraceDialog.Model.HelpText = _GetLabel("DLGTRACE_HELP") + Dim oEntries As Object, oTraceLog As Object, oClear As Object, oMinLevel As Object, oNbEntries As Object, oDump As Object Dim oControl As Object Dim i As Integer, sText As String, iOKCancel As Integer _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
