summaryrefslogtreecommitdiff
path: root/sw/source/core/txtnode/thints.cxx
diff options
context:
space:
mode:
authorMark Page <aptitude@btconnect.com>2016-06-15 13:44:28 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-06-16 08:02:23 +0000
commitd2106d8c8c1af64924f5423223388dbbe99af352 (patch)
tree14b7998527b8a7058df86a110442b1ff08561f30 /sw/source/core/txtnode/thints.cxx
parentbd4ef2734b60d2188874178f173c9163ced09ce7 (diff)
Remove the :: prefix in ::std for sw
This patch was created using a script Variable name textual alignment is preserved to the same level Change-Id: I6b4858f8059b8cf71fc253e87d6df634362d62e9 Reviewed-on: https://gerrit.libreoffice.org/26306 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/source/core/txtnode/thints.cxx')
-rw-r--r--sw/source/core/txtnode/thints.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/txtnode/thints.cxx b/sw/source/core/txtnode/thints.cxx
index b2228ec57443..f4094c574a44 100644
--- a/sw/source/core/txtnode/thints.cxx
+++ b/sw/source/core/txtnode/thints.cxx
@@ -242,7 +242,7 @@ MakeTextAttrNesting(SwTextNode & rNode, SwTextAttrNesting & rNesting,
return static_txtattr_cast<SwTextAttrNesting*>(pNew);
}
-typedef ::std::vector<SwTextAttrNesting *> NestList_t;
+typedef std::vector<SwTextAttrNesting *> NestList_t;
static void
lcl_DoSplitNew(NestList_t & rSplits, SwTextNode & rNode,
@@ -253,7 +253,7 @@ lcl_DoSplitNew(NestList_t & rSplits, SwTextNode & rNode,
const sal_Int32 nSplitPos( (bSplitAtStart) ? nOtherStart : nOtherEnd );
// first find the portion that is split (not necessarily the last one!)
NestList_t::iterator const iter(
- ::std::find_if( rSplits.begin(), rSplits.end(),
+ std::find_if( rSplits.begin(), rSplits.end(),
[nSplitPos](SwTextAttrEnd * const pAttr) {
return TextAttrContains(nSplitPos, pAttr);
} ) );