summaryrefslogtreecommitdiffstats
path: root/editeng/source/outliner/outliner.cxx
diff options
context:
space:
mode:
authornpcdoom <venccsralph@gmail.com>2011-02-27 21:14:03 -0430
committerLuboš Luňák <l.lunak@suse.cz>2011-03-04 12:10:56 +0100
commitbc25156521ee3f636ad702b5ae2d5972323a8a7b (patch)
treed0ddbfb29d8a48b0417abcab8fea4b2bce0fd5f1 /editeng/source/outliner/outliner.cxx
parentfindbar: Name the menu entry properly (Find). (diff)
downloadcore-bc25156521ee3f636ad702b5ae2d5972323a8a7b.tar.gz
core-bc25156521ee3f636ad702b5ae2d5972323a8a7b.zip
Remove deprecated List container.
- Converted List to std::vector<Paragraph*>. - Added Append member function to ParagraphList. - Updated needed functions from Insert to Append in outliner/outliner.cxx. Signed-off-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'editeng/source/outliner/outliner.cxx')
-rw-r--r--editeng/source/outliner/outliner.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx
index ea79c8e14371..a316cfefba40 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -603,7 +603,7 @@ void Outliner::SetText( const OutlinerParaObject& rPObj )
Paragraph* pPara = new Paragraph( rPObj.GetParagraphData(nCurPara));
ImplCheckDepth( pPara->nDepth );
- pParaList->Insert( pPara, LIST_APPEND );
+ pParaList->Append(pPara);
ImplCheckNumBulletItem( nCurPara );
}