diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-01-27 18:34:29 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-01-27 18:34:29 +0000 |
commit | 128af0a4b6cadf95f4816eb4707590380feb5828 (patch) | |
tree | acb36adec4c60a80a3f482fd08071773f1c55cfc | |
parent | 52fc9f3230c2cee37816600f89e75c320b9cdf38 (diff) |
#i10000#: missing namespace qualification added
-rw-r--r-- | sw/source/filter/ww8/styles.cxx | 6 | ||||
-rw-r--r-- | sw/source/filter/ww8/ww8scan.cxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/filter/ww8/styles.cxx b/sw/source/filter/ww8/styles.cxx index 89e283889bb6..a8a3382c284d 100644 --- a/sw/source/filter/ww8/styles.cxx +++ b/sw/source/filter/ww8/styles.cxx @@ -4,9 +4,9 @@ * * $RCSfile: styles.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: hr $ $Date: 2006-01-26 18:19:32 $ + * last change: $Author: hr $ $Date: 2006-01-27 19:34:29 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -159,7 +159,7 @@ namespace "Plain Text" }; - StaticAssert((sizeof(stiName) / sizeof(stiName[0])) == stiMax, + StaticAssert((sizeof(stiName) / sizeof(stiName[0])) == ww::stiMax, WrongSizeOfArray); return stiName; diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx index cbf0841e15b6..1ef987654358 100644 --- a/sw/source/filter/ww8/ww8scan.cxx +++ b/sw/source/filter/ww8/ww8scan.cxx @@ -4,9 +4,9 @@ * * $RCSfile: ww8scan.cxx,v $ * - * $Revision: 1.121 $ + * $Revision: 1.122 $ * - * last change: $Author: hr $ $Date: 2006-01-26 18:22:37 $ + * last change: $Author: hr $ $Date: 2006-01-27 19:34:22 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -805,7 +805,7 @@ const wwSprmSearcher *wwSprmParser::GetWW8SprmSearcher() wwSprmParser::wwSprmParser(ww::WordVersion eVersion) : meVersion(eVersion) { - ASSERT((meVersion >= ww::eWW2 && meVersion <= eWW8), + ASSERT((meVersion >= ww::eWW2 && meVersion <= ww::eWW8), "Impossible value for version"); mnDelta = (ww::IsSevenMinus(meVersion)) ? 0 : 1; |