summaryrefslogtreecommitdiff
path: root/xmloff/source/style/backhdl.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 17:30:23 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 17:30:23 +0000
commit4742fe8dafff5d1d7a7e4e45c82e7bb17b437f8b (patch)
tree036d12fd5162cd8ebeae3188df17ccad4424fc27 /xmloff/source/style/backhdl.cxx
parentddb46d5ad8bdefbe9d4187d62729ff95aa7db538 (diff)
INTEGRATION: CWS warnings01 (1.4.34); FILE MERGED
2006/05/23 19:17:01 sb 1.4.34.3: RESYNC: (1.4-1.5); FILE MERGED 2005/11/16 22:47:21 pl 1.4.34.2: #i55991# removed warnings 2005/11/03 17:47:03 cl 1.4.34.1: warning free code changes for unxlngi6
Diffstat (limited to 'xmloff/source/style/backhdl.cxx')
-rw-r--r--xmloff/source/style/backhdl.cxx14
1 files changed, 11 insertions, 3 deletions
diff --git a/xmloff/source/style/backhdl.cxx b/xmloff/source/style/backhdl.cxx
index 52f0a515d020..1864b83a52e7 100644
--- a/xmloff/source/style/backhdl.cxx
+++ b/xmloff/source/style/backhdl.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: backhdl.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: hr $ $Date: 2006-04-19 13:36:58 $
+ * last change: $Author: hr $ $Date: 2006-06-19 18:30:23 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -174,7 +174,7 @@ sal_Bool XMLBackGraphicPositionPropHdl::importXML( const OUString& rStrImpValue,
return bRet;
}
-sal_Bool XMLBackGraphicPositionPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const
+sal_Bool XMLBackGraphicPositionPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
{
sal_Bool bRet = sal_True;
OUStringBuffer aOut;
@@ -213,6 +213,8 @@ sal_Bool XMLBackGraphicPositionPropHdl::exportXML( OUString& rStrExpValue, const
aOut.append( GetXMLToken(XML_BOTTOM) );
bRet = sal_True;
break;
+ default:
+ break;
}
if( bRet )
@@ -236,6 +238,8 @@ sal_Bool XMLBackGraphicPositionPropHdl::exportXML( OUString& rStrExpValue, const
case style::GraphicLocation_RIGHT_BOTTOM:
aOut.append( GetXMLToken(XML_RIGHT) );
break;
+ default:
+ break;
}
}
}
@@ -275,6 +279,8 @@ void XMLBackGraphicPositionPropHdl::MergeXMLVertPos( style::GraphicLocation& ePo
style::GraphicLocation_RIGHT_MIDDLE :
style::GraphicLocation_RIGHT_BOTTOM);
break;
+ default:
+ break;
}
}
@@ -310,6 +316,8 @@ void XMLBackGraphicPositionPropHdl::MergeXMLHoriPos( style::GraphicLocation& ePo
style::GraphicLocation_MIDDLE_BOTTOM :
style::GraphicLocation_RIGHT_BOTTOM);
break;
+ default:
+ break;
}
}