diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-14 09:10:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-05-14 11:47:53 +0200 |
commit | 008f4273ae201b5bebfd728a3b59958de49279bf (patch) | |
tree | 01bbd1f8b86ae9adc034b3273dbf5e6f6ff70df1 /test/source/text/textprintersettings.cxx | |
parent | b56ca52cef77d4d1f99bc3edd89b2557e5cb2cfb (diff) |
loplugin:ostr in test
Change-Id: Ie261167fc3e1ed9073210e0f8b179455da340c83
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167620
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'test/source/text/textprintersettings.cxx')
-rw-r--r-- | test/source/text/textprintersettings.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/source/text/textprintersettings.cxx b/test/source/text/textprintersettings.cxx index da94c20203c1..6aee8504ea7e 100644 --- a/test/source/text/textprintersettings.cxx +++ b/test/source/text/textprintersettings.cxx @@ -20,15 +20,15 @@ void TextPrinterSettings::testPrinterSettingsProperties() css::uno::Reference<css::beans::XPropertySet> xPrinterSettings(init(), css::uno::UNO_QUERY_THROW); - testBooleanProperty(xPrinterSettings, "PrintGraphics"); - testBooleanProperty(xPrinterSettings, "PrintLeftPages"); - testBooleanProperty(xPrinterSettings, "PrintRightPages"); - testBooleanProperty(xPrinterSettings, "PrintControls"); - testStringProperty(xPrinterSettings, "PrintFaxName", "FaxName"); - testBooleanProperty(xPrinterSettings, "PrintProspect"); - testBooleanProperty(xPrinterSettings, "PrintPageBackground"); - testBooleanProperty(xPrinterSettings, "PrintBlackFonts"); - testBooleanOptionalProperty(xPrinterSettings, "PrintEmptyPages"); + testBooleanProperty(xPrinterSettings, u"PrintGraphics"_ustr); + testBooleanProperty(xPrinterSettings, u"PrintLeftPages"_ustr); + testBooleanProperty(xPrinterSettings, u"PrintRightPages"_ustr); + testBooleanProperty(xPrinterSettings, u"PrintControls"_ustr); + testStringProperty(xPrinterSettings, u"PrintFaxName"_ustr, u"FaxName"_ustr); + testBooleanProperty(xPrinterSettings, u"PrintProspect"_ustr); + testBooleanProperty(xPrinterSettings, u"PrintPageBackground"_ustr); + testBooleanProperty(xPrinterSettings, u"PrintBlackFonts"_ustr); + testBooleanOptionalProperty(xPrinterSettings, u"PrintEmptyPages"_ustr); } } // end namespace apitest |