summaryrefslogtreecommitdiff
path: root/writerperfect/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-07-30 17:44:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-07-31 12:52:19 +0200
commitec5ad2a7dc682bc27bcbf7733a5b36bc06676b8b (patch)
tree6ca46eb5e092170310eb5fbc6009c8ba35f3dab6 /writerperfect/inc
parentd0ff2eb331850f69fc105149d986c6ec3e106319 (diff)
Improved loplugin:stringconstant (now that GCC 7 supports it): writerperfect
Change-Id: Ic6518d6441d81e286e69ea4be11d12c42d61d459 Reviewed-on: https://gerrit.libreoffice.org/76625 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'writerperfect/inc')
-rw-r--r--writerperfect/inc/DocumentHandlerForOdg.hxx2
-rw-r--r--writerperfect/inc/DocumentHandlerForOdp.hxx2
-rw-r--r--writerperfect/inc/DocumentHandlerForOds.hxx2
-rw-r--r--writerperfect/inc/DocumentHandlerForOdt.hxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/writerperfect/inc/DocumentHandlerForOdg.hxx b/writerperfect/inc/DocumentHandlerForOdg.hxx
index 1fba93194948..72968edc14f1 100644
--- a/writerperfect/inc/DocumentHandlerForOdg.hxx
+++ b/writerperfect/inc/DocumentHandlerForOdg.hxx
@@ -16,7 +16,7 @@ namespace writerperfect
{
template <> struct DocumentHandlerFor<OdgGenerator>
{
- static const OUString name() { return OUString("com.sun.star.comp.Draw.XMLOasisImporter"); }
+ static const OUString name() { return "com.sun.star.comp.Draw.XMLOasisImporter"; }
};
}
diff --git a/writerperfect/inc/DocumentHandlerForOdp.hxx b/writerperfect/inc/DocumentHandlerForOdp.hxx
index d7a3aaf9f28b..c919514b80cb 100644
--- a/writerperfect/inc/DocumentHandlerForOdp.hxx
+++ b/writerperfect/inc/DocumentHandlerForOdp.hxx
@@ -16,7 +16,7 @@ namespace writerperfect
{
template <> struct DocumentHandlerFor<OdpGenerator>
{
- static const OUString name() { return OUString("com.sun.star.comp.Impress.XMLOasisImporter"); }
+ static const OUString name() { return "com.sun.star.comp.Impress.XMLOasisImporter"; }
};
}
diff --git a/writerperfect/inc/DocumentHandlerForOds.hxx b/writerperfect/inc/DocumentHandlerForOds.hxx
index 9b789d628e11..4ee268176d32 100644
--- a/writerperfect/inc/DocumentHandlerForOds.hxx
+++ b/writerperfect/inc/DocumentHandlerForOds.hxx
@@ -16,7 +16,7 @@ namespace writerperfect
{
template <> struct DocumentHandlerFor<OdsGenerator>
{
- static const OUString name() { return OUString("com.sun.star.comp.Calc.XMLOasisImporter"); }
+ static const OUString name() { return "com.sun.star.comp.Calc.XMLOasisImporter"; }
};
}
diff --git a/writerperfect/inc/DocumentHandlerForOdt.hxx b/writerperfect/inc/DocumentHandlerForOdt.hxx
index d1abe81d9bb6..ea3742a27dfd 100644
--- a/writerperfect/inc/DocumentHandlerForOdt.hxx
+++ b/writerperfect/inc/DocumentHandlerForOdt.hxx
@@ -16,7 +16,7 @@ namespace writerperfect
{
template <> struct DocumentHandlerFor<OdtGenerator>
{
- static const OUString name() { return OUString("com.sun.star.comp.Writer.XMLOasisImporter"); }
+ static const OUString name() { return "com.sun.star.comp.Writer.XMLOasisImporter"; }
};
}