summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/dialog/pagectrl.cxx2
-rw-r--r--svx/source/gallery2/galmisc.cxx4
-rw-r--r--svx/source/items/rotmodit.cxx2
-rw-r--r--svx/source/stbctrls/pszctrl.cxx2
-rw-r--r--svx/source/tbxctrls/layctrl.cxx2
-rw-r--r--svx/source/unodraw/UnoGraphicExporter.cxx4
6 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/dialog/pagectrl.cxx b/svx/source/dialog/pagectrl.cxx
index 44e5fddc8622..6119973c7ebf 100644
--- a/svx/source/dialog/pagectrl.cxx
+++ b/svx/source/dialog/pagectrl.cxx
@@ -264,7 +264,7 @@ void SvxPageWindow::DrawPage(vcl::RenderContext& rRenderContext, const Point& rO
break;
default: break;
}
- sText += OUStringLiteral1(cArrow);
+ sText += OUStringChar(cArrow);
for (sal_Int32 i = 0; i < sText.getLength(); i++)
{
OUString sDraw(sText.copy(i,1));
diff --git a/svx/source/gallery2/galmisc.cxx b/svx/source/gallery2/galmisc.cxx
index b798263e7498..e933419c252c 100644
--- a/svx/source/gallery2/galmisc.cxx
+++ b/svx/source/gallery2/galmisc.cxx
@@ -186,11 +186,11 @@ OUString GetReducedString( const INetURLObject& rURL, sal_Int32 nMaxLen )
if (nPathPrefixLen >= 0)
{
aReduced = aPath.copy(0, nPathPrefixLen) + "..."
- + OUStringLiteral1(aDelimiter) + aName;
+ + OUStringChar(aDelimiter) + aName;
}
else
{
- aReduced += "..." + OUStringLiteral1(aDelimiter) + "..."
+ aReduced += "..." + OUStringChar(aDelimiter) + "..."
+ aName.copy( aName.getLength() - (nMaxLen - 7) );
}
}
diff --git a/svx/source/items/rotmodit.cxx b/svx/source/items/rotmodit.cxx
index 274a01d46160..8ae88d21cf66 100644
--- a/svx/source/items/rotmodit.cxx
+++ b/svx/source/items/rotmodit.cxx
@@ -70,7 +70,7 @@ bool SvxRotateModeItem::GetPresentation(
[[fallthrough]]; // break; // FALL THROUGH!!!
case SfxItemPresentation::Nameless:
- rText += OUStringLiteral1( GetValue() );
+ rText += OUStringChar( GetValue() );
return true;
break;
default: ;//prevent warning
diff --git a/svx/source/stbctrls/pszctrl.cxx b/svx/source/stbctrls/pszctrl.cxx
index 06877c8f06e4..ddb66bd5253a 100644
--- a/svx/source/stbctrls/pszctrl.cxx
+++ b/svx/source/stbctrls/pszctrl.cxx
@@ -78,7 +78,7 @@ OUString SvxPosSizeStatusBarControl::GetMetricStr_Impl( long nVal )
if( FieldUnit::NONE != eOutUnit )
{
- sMetric += OUStringLiteral1(cSep);
+ sMetric += OUStringChar(cSep);
sal_Int64 nFract = nConvVal % 100;
if ( nFract < 0 )
diff --git a/svx/source/tbxctrls/layctrl.cxx b/svx/source/tbxctrls/layctrl.cxx
index 4cb6101d6f9b..86083652274f 100644
--- a/svx/source/tbxctrls/layctrl.cxx
+++ b/svx/source/tbxctrls/layctrl.cxx
@@ -320,7 +320,7 @@ void TableWindow::Paint(vcl::RenderContext& rRenderContext, const tools::Rectang
// #i95350# force RTL output
if (IsRTLEnabled())
- aText = OUStringLiteral1(0x202D) + aText;
+ aText = OUStringChar(0x202D) + aText;
rRenderContext.DrawText(Point(nTextX, nTextY), aText);
}
diff --git a/svx/source/unodraw/UnoGraphicExporter.cxx b/svx/source/unodraw/UnoGraphicExporter.cxx
index 6ecd15af5d7c..0271af05eb69 100644
--- a/svx/source/unodraw/UnoGraphicExporter.cxx
+++ b/svx/source/unodraw/UnoGraphicExporter.cxx
@@ -346,10 +346,10 @@ IMPL_LINK(GraphicExporter, CalcFieldValueHdl, EditFieldInfo*, pInfo, void)
switch(mpDoc->GetPageNumType())
{
case css::style::NumberingType::CHARS_UPPER_LETTER:
- aPageNumValue += OUStringLiteral1( (mnPageNumber - 1) % 26 + 'A' );
+ aPageNumValue += OUStringChar( (mnPageNumber - 1) % 26 + 'A' );
break;
case css::style::NumberingType::CHARS_LOWER_LETTER:
- aPageNumValue += OUStringLiteral1( (mnPageNumber - 1) % 26 + 'a' );
+ aPageNumValue += OUStringChar( (mnPageNumber - 1) % 26 + 'a' );
break;
case css::style::NumberingType::ROMAN_UPPER:
bUpper = true;