summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/sortopt.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/doc/sortopt.cxx')
-rw-r--r--sw/source/core/doc/sortopt.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/core/doc/sortopt.cxx b/sw/source/core/doc/sortopt.cxx
index 555e44493175..7705280eb910 100644
--- a/sw/source/core/doc/sortopt.cxx
+++ b/sw/source/core/doc/sortopt.cxx
@@ -19,7 +19,6 @@
#include <i18nlangtag/lang.h>
#include <sortopt.hxx>
-#include <boost/foreach.hpp>
SwSortKey::SwSortKey() :
eSortOrder( SRT_ASCENDING ),
@@ -69,7 +68,7 @@ SwSortOptions::SwSortOptions(const SwSortOptions& rOpt) :
SwSortOptions::~SwSortOptions()
{
- BOOST_FOREACH(SwSortKey *pKey, aKeys)
+ for( SwSortKey *pKey : aKeys )
delete pKey;
}