uui/source/iahndl.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit ce8e14ce2222b1aa2cbbb2465adc003fce2cf269
Author: Miklos Vajna <[email protected]>
AuthorDate: Thu Feb 15 13:08:26 2024 +0100
Commit: Miklos Vajna <[email protected]>
CommitDate: Thu Feb 15 16:37:52 2024 +0100
uui: show what is the unhandled result before asserting
online.git unit-bad-doc-load fails here, at least show what is the
unhandled return code (-1) before failing.
The actual problem is not yet solved.
Change-Id: I530058590f176f5c7eee3b6cd9d9a270110613ed
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163436
Reviewed-by: Miklos Vajna <[email protected]>
Tested-by: Jenkins
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx
index 2a029de54296..291d3f18e844 100644
--- a/uui/source/iahndl.cxx
+++ b/uui/source/iahndl.cxx
@@ -889,6 +889,7 @@ executeMessageBox(
aResult = DialogMask::ButtonsNo;
break;
default:
+ SAL_WARN("uui", "executeMessageBox: nMessResult is " <<
nMessResult);
assert(false);
}