diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-27 02:57:35 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-27 03:14:45 +0100 |
commit | 646daee253b69404591c006ec6e717b6660af30b (patch) | |
tree | 6f844b932c6e10ffb054276138643c504208fa22 /editeng | |
parent | c52851bf5603136fb58b828ff9e848aa0cdfbef0 (diff) |
kill some unused inlines
Change-Id: I17160b264b547067c694dd268eb0d3bd1086565d
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/frmitems.cxx | 22 |
1 files changed, 0 insertions, 22 deletions
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 |