summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-07-27 01:12:22 -0400
committerKohei Yoshida <kyoshida@novell.com>2011-07-27 01:12:22 -0400
commita80391205afb2cfd8419e235bb8291c3668148ca (patch)
treecbaa23effd1ca6305f1c4ebbc95ed6b3e73d8d86
parent594648be754b8b5afeebc87320bab945d8edb98c (diff)
Kills those pesky non-printable chars.
-rw-r--r--sw/source/filter/html/parcss1.cxx2
-rw-r--r--sw/source/filter/html/parcss1.hxx11
2 files changed, 0 insertions, 13 deletions
diff --git a/sw/source/filter/html/parcss1.cxx b/sw/source/filter/html/parcss1.cxx
index 3f3ccde20a..0b277f9477 100644
--- a/sw/source/filter/html/parcss1.cxx
+++ b/sw/source/filter/html/parcss1.cxx
@@ -1249,8 +1249,6 @@ CSS1Selector::~CSS1Selector()
delete pNext;
}
-/* */
-
CSS1Expression::~CSS1Expression()
{
delete pNext;
diff --git a/sw/source/filter/html/parcss1.hxx b/sw/source/filter/html/parcss1.hxx
index 5df550b0f1..f12dea4cba 100644
--- a/sw/source/filter/html/parcss1.hxx
+++ b/sw/source/filter/html/parcss1.hxx
@@ -33,8 +33,6 @@
class Color;
-/* */
-
// Die Tokens des CSS1-Parsers
enum CSS1Token
{
@@ -74,7 +72,6 @@ enum CSS1Token
CSS1_RGB
};
-
// die Zustaende des Parsers
enum CSS1ParserState
{
@@ -83,9 +80,6 @@ enum CSS1ParserState
CSS1_PAR_ERROR
};
-
-/* */
-
enum CSS1SelectorType
{
CSS1_SELTYPE_ELEMENT,
@@ -130,9 +124,6 @@ public:
const CSS1Selector *GetNext() const { return pNext; }
};
-
-/* */
-
// Die folegende Klasse beschreibt einen Teil-Ausdruck einer
// CSS1-Deklaration sie besteht aus
//
@@ -193,8 +184,6 @@ inline sal_Int32 CSS1Expression::GetSLength() const
return (sal_Int32)(nValue + (nValue < 0. ? -.5 : .5 ));
}
-/* */
-
// Diese Klasse parst den Inhalt eines Style-Elements oder eine Style-Option
// und bereitet ihn ein wenig auf.
//