Kaydet (Commit) 19fd963d authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1209001 Unchecked return value

Change-Id: I1d2615ed478417a965ebddb37539ce4697b8e92f
üst 3a699403
......@@ -2166,7 +2166,8 @@ void Test::testFuncGETPIVOTDATA()
pDPObj = createDPFromRange(m_pDoc, aDataRange, aFields, SAL_N_ELEMENTS(aFields), false);
}
pDPs->InsertNewTable(pDPObj);
bSuccess = pDPs->InsertNewTable(pDPObj);
CPPUNIT_ASSERT_MESSAGE("InsertNewTable failed", bSuccess);
aOutRange = refresh(pDPObj);
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment