diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-10-30 12:20:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-10-31 09:24:42 +0100 |
commit | 8328c69858e7be8dbf82a8ec66948a3e1534a852 (patch) | |
tree | e0805f463e07209944b862512b3004ad84ada662 | |
parent | 011d5bbd068f00c9477b1fd68e8ba297d4e6998a (diff) |
merge these lines
Change-Id: Ic8bcfdd09c0f23e6584daf0e30c26aaccdab6fa6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175825
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Tested-by: Jenkins
-rw-r--r-- | sw/source/uibase/shells/textglos.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/uibase/shells/textglos.cxx b/sw/source/uibase/shells/textglos.cxx index 7faa1aa58081..6d9bb08028a6 100644 --- a/sw/source/uibase/shells/textglos.cxx +++ b/sw/source/uibase/shells/textglos.cxx @@ -53,8 +53,7 @@ void SwTextShell::ExecGlossary(SfxRequest &rReq) break; case FN_EXPAND_GLOSSARY: { - bool bReturn; - bReturn = pGlosHdl->ExpandGlossary(rReq.GetFrameWeld()); + bool bReturn = pGlosHdl->ExpandGlossary(rReq.GetFrameWeld()); rReq.SetReturnValue( SfxBoolItem( nSlot, bReturn ) ); rReq.Done(); } |