diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-09-22 00:09:22 +0200 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-09-22 00:31:49 +0200 |
commit | 935e8fc98c033680029e4531747a2f680f50d5ca (patch) | |
tree | 436dc85a5e87936dbe6f0c6c35aff18a4360e7f6 | |
parent | 2113c50b455ae67874eb61ff0dcd75c766b17002 (diff) |
werror: ‘nDirection’ shadows a member of 'this'
Change-Id: Idb56ef8327164f22379b732f9507e0b255b0998c
-rw-r--r-- | sw/source/filter/html/wrthtml.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/html/wrthtml.cxx b/sw/source/filter/html/wrthtml.cxx index b64f9aa19b07..5cc182f05971 100644 --- a/sw/source/filter/html/wrthtml.cxx +++ b/sw/source/filter/html/wrthtml.cxx @@ -1307,10 +1307,10 @@ void SwHTMLWriter::OutDirection( sal_uInt16 nDir ) } } -OString SwHTMLWriter::convertDirection(sal_uInt16 nDirection) +OString SwHTMLWriter::convertDirection(sal_uInt16 nDir) { OString sConverted; - switch (nDirection) + switch (nDir) { case FRMDIR_HORI_LEFT_TOP: case FRMDIR_VERT_TOP_LEFT: |