[Libreoffice-commits] .: autodoc/source
Fridrich Strba
fridrich at kemper.freedesktop.org
Thu Feb 3 18:12:30 PST 2011
autodoc/source/inc/estack.hxx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 7d5657d38d9cc9725d7a84954b3929bf2d35579f
Author: Fridrich Strba <fridrich.strba at bluewin.ch>
Date: Thu Feb 3 19:00:35 2011 -0700
slist -> list
diff --git a/autodoc/source/inc/estack.hxx b/autodoc/source/inc/estack.hxx
index b9607fe..bd926d3 100644
--- a/autodoc/source/inc/estack.hxx
+++ b/autodoc/source/inc/estack.hxx
@@ -33,23 +33,23 @@
// USED SERVICES
// BASE CLASSES
-#include <slist>
+#include <list>
// COMPONENTS
// PARAMETERS
template <class ELEM>
-class EStack : private std::slist<ELEM>
+class EStack : private std::list<ELEM>
{
private:
- typedef std::slist<ELEM> base;
+ typedef std::list<ELEM> base;
const base & Base() const { return *this; }
base & Base() { return *this; }
public:
typedef ELEM value_type;
- typedef typename std::slist<ELEM>::size_type size_type;
+ typedef typename std::list<ELEM>::size_type size_type;
// LIFECYCLE
EStack() {}
More information about the Libreoffice-commits
mailing list