summaryrefslogtreecommitdiff
path: root/svx/source/dialog
diff options
context:
space:
mode:
authorJustin Luth <jluth@mail.com>2023-08-10 09:33:26 -0400
committerJustin Luth <jluth@mail.com>2023-08-11 00:11:35 +0200
commit47cff47966ea2876765bdfb2dfb83eaeb1db1e1a (patch)
tree659d524c226eda5838dca1c2af5a17e44003462b /svx/source/dialog
parent3b81780ae907046b667282b051281888ef00d210 (diff)
autorecovery: DLG_RET_OK_AUTOLUNCH => DLG_RET_OK_AUTOLAUNCH
Change-Id: I3f1436fa1b8ff5b34c65b103b0dd26dffc0e558d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155566 Tested-by: Jenkins Reviewed-by: Justin Luth <jluth@mail.com>
Diffstat (limited to 'svx/source/dialog')
-rw-r--r--svx/source/dialog/docrecovery.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx
index f77418227c78..1e40115270bb 100644
--- a/svx/source/dialog/docrecovery.cxx
+++ b/svx/source/dialog/docrecovery.cxx
@@ -607,9 +607,9 @@ IMPL_LINK_NOARG(SaveDialog, OKButtonHdl, weld::Button&, void)
xProgress.reset();
// if "CANCEL" => return "CANCEL"
- // if "OK" => "AUTOLUNCH" always !
+ // if "OK" => request a restart always!
if (nResult == DLG_RET_OK)
- nResult = DLG_RET_OK_AUTOLUNCH;
+ nResult = DLG_RET_OK_AUTOLAUNCH;
m_xDialog->response(nResult);
}