summaryrefslogtreecommitdiff
path: root/l10ntools/source
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools/source')
-rw-r--r--l10ntools/source/helper.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/l10ntools/source/helper.cxx b/l10ntools/source/helper.cxx
index b842755c27f6..22f5cc5df506 100644
--- a/l10ntools/source/helper.cxx
+++ b/l10ntools/source/helper.cxx
@@ -31,9 +31,15 @@ OString escapeAll(
OString unEscapeAll(
+#ifdef DEBUG
const OString& rText, const OString& rEscaped, const OString& rUnEscaped)
+#else
+ const OString& rText, const OString& rEscaped, std::string_view rUnEscaped)
+#endif
{
+#ifdef DEBUG
assert( rEscaped.getLength() == 2*rUnEscaped.getLength() );
+#endif
OStringBuffer sReturn;
const sal_Int32 nLength = rText.getLength();
for ( sal_Int32 nIndex = 0; nIndex < nLength; ++nIndex )
cb69b70d5356e'>seperate headless textrendering into its own classCaolán McNamara 2015-02-24make ScanlineStride an argument to createBitmapDeviceCaolán McNamara 2015-01-27these are const inputs, we fill widths from pGlyphIds via pEncodingCaolán McNamara 2015-01-27rhbz#1177022: vcl: fix PDF embedding of Type 1 fontsMichael Stahl 2015-01-27add a length arg to GetEmbedFontDataCaolán McNamara 2014-10-13vcl: Make ImplFontCharMap a pImpl and move functions to FontCharMapChris Sherlock 2014-10-06vcl: FontCharMap to use intrusive_ptr ImplFontCharMapChris Sherlock 2014-09-15vcl: Rename GetImplFontCapabilities()Chris Sherlock 2014-04-02Kill superfluous vertical whitespaceTor Lillqvist 2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann 2014-03-20cosmetic: split PhysicalFontFamily/Collection out of outdev3.cxxNorbert Thiebaud 2014-03-20cosmetic: split PhysicalFontFace class it its own source/headerNorbert Thiebaud 2014-03-20rename ImplDevFontList to PhysicalFontCollectionNorbert Thiebaud 2014-02-21vcl: sal_Bool -> boolStephan Bergmann 2014-01-28bool improvementsStephan Bergmann 2014-01-06Resolves: #i123840# add and use the sal_GlyphId typeHerbert Dürr