summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-05-26 16:42:17 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-05-26 20:44:07 +0200
commitb5af95a4d5c59094aa9fbdf35e49962f605f8dee (patch)
treea5c733fdc2d68f66330d9cfc7b114173939b7c8c /sfx2
parent7f63c6b2f614710d6bb9c3d2e2db94b5e37c7417 (diff)
log what page id is missing if this happens
Change-Id: Ie279350446ef1892d5bb145e58b9f0d9dba683f3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116206 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/tabdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index 02c46e96ecb3..ee02cef34cae 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -530,7 +530,7 @@ IMPL_LINK(SfxTabDialogController, ActivatePageHdl, const OString&, rPage, void)
Data_Impl* pDataObject = Find(m_pImpl->aData, rPage);
if (!pDataObject)
{
- SAL_WARN("sfx.dialog", "Tab Page ID not known, this is pretty serious and needs investigation");
+ SAL_WARN("sfx.dialog", "Tab Page ID '" << rPage << "' not known, this is pretty serious and needs investigation");
return;
}