summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2017-02-07 18:18:26 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-07 19:06:16 +0000
commitbddc774795c139f84e0f76a83eb1b046b9f51a32 (patch)
tree58f19132498c0a0366719b936f53a7e4dacfc747 /include
parenttdf#104870 - keep reference on the TitleBar while setting title. (diff)
downloadcore-bddc774795c139f84e0f76a83eb1b046b9f51a32.tar.gz
core-bddc774795c139f84e0f76a83eb1b046b9f51a32.zip
remove CREATE_OSTRING macro
Change-Id: I7d5e1570918adc3b0cf2063d9735414233011a81 Reviewed-on: https://gerrit.libreoffice.org/34009 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/oox/helper/helper.hxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/oox/helper/helper.hxx b/include/oox/helper/helper.hxx
index 2dc924360227..1d9d1c480c9c 100644
--- a/include/oox/helper/helper.hxx
+++ b/include/oox/helper/helper.hxx
@@ -42,11 +42,6 @@ namespace oox {
#define STATIC_ARRAY_SELECT( array, index, def ) \
((static_cast<size_t>(index) < SAL_N_ELEMENTS(array)) ? ((array)[static_cast<size_t>(index)]) : (def))
-/** Expands to a temporary OString, created from a literal(!) character
- array. */
-#define CREATE_OSTRING( ascii ) \
- OString( RTL_CONSTASCII_STRINGPARAM( ascii ) )
-
/** Convert an OUString to an ASCII C string. Use for debug purposes only. */
#define OUSTRING_TO_CSTR( str ) \
OUStringToOString( str, RTL_TEXTENCODING_ASCII_US ).getStr()