diff options
author | Noel Grandin <noel@peralex.com> | 2012-08-08 12:00:39 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-08-08 13:53:09 +0300 |
commit | 720a130b29e24c5e3b8bfc97a046c1a41694ab8f (patch) | |
tree | 727062afc4e7403ddcb4bf816c63c7ce42235c9c | |
parent | daccbc1e070fe5788bb4f1f5e88d0eb7af5813b2 (diff) |
Remove usage of list.hxx
Change-Id: I5815bdc2ef0d7eff15d518f6d66e913e31592d83
-rw-r--r-- | editeng/inc/editeng/outliner.hxx | 4 | ||||
-rw-r--r-- | sd/source/ui/dlg/present.cxx | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/editeng/inc/editeng/outliner.hxx b/editeng/inc/editeng/outliner.hxx index 370ff2e5d27f..9b61a811f296 100644 --- a/editeng/inc/editeng/outliner.hxx +++ b/editeng/inc/editeng/outliner.hxx @@ -36,7 +36,7 @@ #include <editeng/editdata.hxx> #include <i18npool/lang.h> #include <tools/color.hxx> -#include <tools/list.hxx> +#include <tools/contnr.hxx> #include <vcl/graph.hxx> #include <tools/link.hxx> #include <rsc/rscsfx.hxx> @@ -699,7 +699,7 @@ public: OutlinerView* GetView( size_t nIndex ) const; size_t GetViewCount() const; - Paragraph* Insert( const String& rText, sal_uLong nAbsPos = LIST_APPEND, sal_Int16 nDepth = 0 ); + Paragraph* Insert( const String& rText, sal_uLong nAbsPos = CONTAINER_APPEND, sal_Int16 nDepth = 0 ); void SetText( const OutlinerParaObject& ); void AddText( const OutlinerParaObject& ); void SetText( const String& rText, Paragraph* pParagraph ); diff --git a/sd/source/ui/dlg/present.cxx b/sd/source/ui/dlg/present.cxx index 3aea637d29c8..c84bd2c3f91a 100644 --- a/sd/source/ui/dlg/present.cxx +++ b/sd/source/ui/dlg/present.cxx @@ -35,6 +35,7 @@ #include <com/sun/star/container/XIndexAccess.hpp> #include <comphelper/processfactory.hxx> #include <svl/itemset.hxx> +#include <tools/list.hxx> #include "sdattr.hxx" #include "present.hxx" |