diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 17:46:29 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:08 +0100 |
commit | 201812ee8bd8ed91df0a293649bfbd4a7dd6b059 (patch) | |
tree | 143c25385a9d22fb94e959576e7a44f889fbbec3 /vcl | |
parent | 4a7237cb3130a7f9d6739f670606598f0e836e06 (diff) |
Avoid reserved identifiers
Change-Id: I751e75e0b63e95cc92be7b61a77ed21eeb52bc1f
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/edit/textdat2.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/edit/textdat2.hxx b/vcl/source/edit/textdat2.hxx index ef1141fe49c1..076d9552394e 100644 --- a/vcl/source/edit/textdat2.hxx +++ b/vcl/source/edit/textdat2.hxx @@ -90,10 +90,10 @@ struct TEWritingDirectionInfo sal_uInt8 nType; sal_Int32 nStartPos; sal_Int32 nEndPos; - TEWritingDirectionInfo( sal_uInt8 _Type, sal_Int32 _Start, sal_Int32 _End ) - : nType {_Type} - , nStartPos {_Start} - , nEndPos {_End} + TEWritingDirectionInfo( sal_uInt8 Type, sal_Int32 Start, sal_Int32 End ) + : nType {Type} + , nStartPos {Start} + , nEndPos {End} {} }; |