From 646daee253b69404591c006ec6e717b6660af30b Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Wed, 27 Mar 2013 02:57:35 +0100 Subject: kill some unused inlines Change-Id: I17160b264b547067c694dd268eb0d3bd1086565d --- editeng/source/items/frmitems.cxx | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'editeng') diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx index 869f3a1d5dee..65b5fa0ed34b 100644 --- a/editeng/source/items/frmitems.cxx +++ b/editeng/source/items/frmitems.cxx @@ -88,28 +88,6 @@ using namespace ::com::sun::star::table::BorderLineStyle; #define TWIP_TO_MM100_UNSIGNED(TWIP) ((((TWIP)*127L+36L)/72L)) #define MM100_TO_TWIP_UNSIGNED(MM100) ((((MM100)*72L+63L)/127L)) -// STATIC DATA ----------------------------------------------------------- - -inline void SetValueProp( XubString& rStr, const sal_uInt16 nValue, - const sal_uInt16 nProp ) -{ - if( 100 == nProp ) - rStr += OUString::number( nValue ); - else - rStr += OUString::number(nProp) + "%"; -} - -inline void SetValueProp( XubString& rStr, const short nValue, - const sal_uInt16 nProp ) -{ - if( 100 == nProp ) - rStr += OUString::number( nValue ); - else - rStr += OUString::number(nProp) + "%"; -} - -// ----------------------------------------------------------------------- - /* SvxBorderLine is not an SfxPoolItem, and has no Store/Create serialization/deserialization methods. Since border line information needs to be serialized by the table autoformat code, these file-local -- cgit