Kaydet (Commit) fa30508f authored tarafından Fridrich Štrba's avatar Fridrich Štrba

Fix svtools with Visual Studio 2010

Change-Id: I445173e8f469c409801d803ef22cb499935ba19b
üst d650d404
......@@ -832,7 +832,7 @@ sal_uInt16 LineListBox::InsertEntry( const XubString& rStr, sal_uInt16 nPos )
if ( nPos < pLineList->size() ) {
ImpLineList::iterator it = pLineList->begin();
::std::advance( it, nPos );
pLineList->insert( it, NULL );
pLineList->insert( it, reinterpret_cast<ImpLineListData *>(NULL) );
} else {
pLineList->push_back( NULL );
}
......
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