Kaydet (Commit) 2c544ef0 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid false warning about potentially uninitialized variable

Change-Id: I969b17ffe89e5fbb0f30a47acecaf6698e81fefe
üst 00a95ff7
......@@ -331,7 +331,7 @@ bool lcl_checkFrameBtlr(SwNode* pStartNode, sax_fastparser::FastAttributeList* p
SwTxtNode* pTxtNode = static_cast<SwTxtNode*>(pStartNode);
const SfxPoolItem* pItem;
const SfxPoolItem* pItem = 0; // explicitly init to avoid warnings
bool bItemSet = false;
if (pTxtNode->HasSwAttrSet())
{
......
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