diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 12:13:25 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 12:13:25 +0200 |
commit | ffd919b2d0ee261b2364726985e804c6f6229655 (patch) | |
tree | 9f8d0a75aa1a1d8019eceb95d2b03cc11c66afbd | |
parent | 311167193b4a80fab68b275e0a0f8dfb8e71f005 (diff) |
Avoid reserved identifiers
Change-Id: I4c76a7d3f5a209578b5a7c230fbbcdea2ec47ae0
-rw-r--r-- | editeng/source/editeng/editdoc.cxx | 4 | ||||
-rw-r--r-- | editeng/source/editeng/editdoc.hxx | 16 |
2 files changed, 10 insertions, 10 deletions
diff --git a/editeng/source/editeng/editdoc.cxx b/editeng/source/editeng/editdoc.cxx index 0cd46fad1f9b..35f889b7ff9c 100644 --- a/editeng/source/editeng/editdoc.cxx +++ b/editeng/source/editeng/editdoc.cxx @@ -688,8 +688,8 @@ void ParaPortion::CorrectValuesBehindLastFormattedLine( sal_Int32 nLastFormatted namespace { -template<typename _Array, typename _Val> -sal_Int32 FastGetPos(const _Array& rArray, const _Val* p, sal_Int32& rLastPos) +template<typename Array, typename Val> +sal_Int32 FastGetPos(const Array& rArray, const Val* p, sal_Int32& rLastPos) { sal_Int32 nArrayLen = rArray.size(); diff --git a/editeng/source/editeng/editdoc.hxx b/editeng/source/editeng/editdoc.hxx index 089880d859cc..024c4b4148bd 100644 --- a/editeng/source/editeng/editdoc.hxx +++ b/editeng/source/editeng/editdoc.hxx @@ -82,10 +82,10 @@ struct ScriptTypePosInfo sal_Int32 nStartPos; sal_Int32 nEndPos; - ScriptTypePosInfo( short _Type, sal_Int32 _Start, sal_Int32 _End ) - : nScriptType(_Type) - , nStartPos(_Start) - , nEndPos(_End) + ScriptTypePosInfo( short Type, sal_Int32 Start, sal_Int32 End ) + : nScriptType(Type) + , nStartPos(Start) + , nEndPos(End) { } }; @@ -98,10 +98,10 @@ struct WritingDirectionInfo sal_Int32 nStartPos; sal_Int32 nEndPos; - WritingDirectionInfo( sal_uInt8 _Type, sal_Int32 _Start, sal_Int32 _End ) - : nType(_Type) - , nStartPos(_Start) - , nEndPos(_End) + WritingDirectionInfo( sal_uInt8 Type, sal_Int32 Start, sal_Int32 End ) + : nType(Type) + , nStartPos(Start) + , nEndPos(End) { } }; |