diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2020-07-24 13:33:08 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-07-24 17:49:26 +0200 |
commit | 1800e22f81959c6cb56f8ed238ac68681dda1a21 (patch) | |
tree | 9423301c911cf2f095a77c263824cc38a8f316ed /svx | |
parent | ba4b584815b71fc8987c9212226124c3e0974cfb (diff) |
tdf#135093: fix wording error dialog on Add Submissions dialog by blank input
Don't replace the right string by application name
It seems to come from:
commit b5483af985ed8c49b0bb9ebcd096cc9530e35a38
Author: Thomas Arnhold <thomas@arnhold.org>
Date: Fri Aug 15 21:28:56 2014 +0200
ErrorBoxes from datanavi to String
Change-Id: Ifd5a49537d0574bc2fb6530e70d19c31a35da914
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99371
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/datanavi.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/svx/source/form/datanavi.cxx b/svx/source/form/datanavi.cxx index fc7d8fe26652..ba59128312fb 100644 --- a/svx/source/form/datanavi.cxx +++ b/svx/source/form/datanavi.cxx @@ -2853,7 +2853,6 @@ namespace svxform std::unique_ptr<weld::MessageDialog> xErrorBox(Application::CreateMessageDialog(m_xDialog.get(), VclMessageType::Warning, VclButtonsType::Ok, SvxResId(RID_STR_EMPTY_SUBMISSIONNAME))); - xErrorBox->set_primary_text(Application::GetDisplayName()); xErrorBox->run(); return; } |