summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 17:55:33 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 17:55:33 +0000
commit087795bf97254bffb337e5f1415382fb4b1aee96 (patch)
treea4fd5b54bc0d88273ec8f305841b0dc894d65450 /xmloff
parent076432511cab53e276cc55c893df9d8c934a75ea (diff)
INTEGRATION: CWS warnings01 (1.12.32); FILE MERGED
2005/11/17 16:34:02 pl 1.12.32.3: #i55991# removed warnings 2005/11/04 14:50:32 cl 1.12.32.2: warning free code changes 2005/11/03 17:47:14 cl 1.12.32.1: warning free code changes for unxlngi6
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/transform/StyleOASISTContext.cxx12
1 files changed, 9 insertions, 3 deletions
diff --git a/xmloff/source/transform/StyleOASISTContext.cxx b/xmloff/source/transform/StyleOASISTContext.cxx
index 384be4687a5a..b7813b56f7e1 100644
--- a/xmloff/source/transform/StyleOASISTContext.cxx
+++ b/xmloff/source/transform/StyleOASISTContext.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: StyleOASISTContext.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 15:55:21 $
+ * last change: $Author: hr $ $Date: 2006-06-19 18:55:33 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -751,6 +751,9 @@ OUString XMLPropertiesTContext_Impl::MergeUnderline(
case XML_WAVE:
eUnderline = XML_BOLD_WAVE;
break;
+ default:
+ OSL_ENSURE( false, "xmloff::XMLPropertiesTContext_Impl::MergeUnderline(), missing underline case!" );
+ break;
}
}
else
@@ -760,6 +763,9 @@ OUString XMLPropertiesTContext_Impl::MergeUnderline(
case XML_SOLID:
eUnderline = XML_SINGLE;
break;
+ default:
+ OSL_ENSURE( false, "xmloff::XMLPropertiesTContext_Impl::MergeUnderline(), missing underline case!" );
+ break;
}
}
@@ -975,7 +981,7 @@ void XMLStyleOASISTContext::EndElement()
}
}
-void XMLStyleOASISTContext::Characters( const OUString& rChars )
+void XMLStyleOASISTContext::Characters( const OUString& )
{
// element content only:
}