Kaydet (Commit) d665e63b authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl

oox: GrabBagStack: add method isStackEmpty

Change-Id: Iec563762e7be7fb6e2d5501fe5efeb88093793cb
üst 5133e0e0
......@@ -47,6 +47,7 @@ public:
void pop();
void addInt32(OUString aElementName, sal_Int32 aIntValue);
void addString(OUString aElementName, OUString aStringValue);
bool isStackEmpty();
};
} // namespace oox
......
......@@ -30,6 +30,11 @@ OUString GrabBagStack::getCurrentName()
return mCurrentElement.maName;
}
bool GrabBagStack::isStackEmpty()
{
return mStack.empty();
}
PropertyValue GrabBagStack::getRootProperty()
{
while(!mStack.empty())
......
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