diff options
author | Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de> | 2023-09-07 12:49:46 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de> | 2023-09-08 13:24:21 +0200 |
commit | c7a608a6691c790783c63f504010bc796c36af25 (patch) | |
tree | 2495546cbec51b568d52309a19fa9fc730a0b61c /include/cui | |
parent | 48129cabb9a5636207d3b8f4f9fa4e4abac61b8a (diff) |
tdf#155503 Add title to document title dialog
Otherwise the title was just "Name"
Change-Id: I883d2468c7bd97782b0aef4165a6afe4ff39ce31
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156659
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
Diffstat (limited to 'include/cui')
-rw-r--r-- | include/cui/dlgname.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/cui/dlgname.hxx b/include/cui/dlgname.hxx index 9083177ee980..16938734ff97 100644 --- a/include/cui/dlgname.hxx +++ b/include/cui/dlgname.hxx @@ -36,7 +36,8 @@ private: DECL_LINK(ModifyHdl, weld::Entry&, void); public: - SvxNameDialog(weld::Window* pWindow, const OUString& rName, const OUString& rDesc); + SvxNameDialog(weld::Window* pWindow, const OUString& rName, const OUString& rDesc, + const OUString& rTitle = ""); OUString GetName() const { return m_xEdtName->get_text(); } |