summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-04-08 23:01:14 +0200
committerJulien Nabet <serval2412@yahoo.fr>2015-04-08 23:05:42 +0200
commit8959ace44076273fc5398e8973005f5ba159b6c0 (patch)
tree416d3dd31ef432a11b528b33a7c13a0d59ea775f
parent5cc0da153e8516a11bbd3e5809e8dcaf0b0dc7d9 (diff)
Related tdf#88056: Add a warning when id service unknown
Change-Id: I6e027027e78770e32aa484bb1598ebd8c2f291de
-rw-r--r--editeng/source/uno/unofield.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/editeng/source/uno/unofield.cxx b/editeng/source/uno/unofield.cxx
index c115d1193b24..479e411edd4a 100644
--- a/editeng/source/uno/unofield.cxx
+++ b/editeng/source/uno/unofield.cxx
@@ -364,6 +364,10 @@ SvxUnoTextField::SvxUnoTextField( uno::Reference< text::XTextRange > xAnchor, co
case text::textfield::Type::MEASURE:
mpImpl->mnInt16 = sal::static_int_cast< sal_Int16 >(static_cast<const SdrMeasureField*>(pData)->GetMeasureFieldKind());
break;
+
+ default:
+ SAL_WARN("editeng.uno", "Id service unknown: " << mnServiceId);
+ break;
}
}
}