summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/sfxhelp.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-02-08 13:54:53 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-09 21:04:42 +0100
commit45f4de6d333aa3fa5873cf8e1146286c74960557 (patch)
tree463a497d6132e44d82294772be4aa3f487ad13e7 /sfx2/source/appl/sfxhelp.cxx
parent34f333445c54c87f3afe777fa467f7a2bb122208 (diff)
loplugin:indentation in sfx2..slideshow
Change-Id: I3bd23a8f6237d0887a4782b6179a413dd2f03e02 Reviewed-on: https://gerrit.libreoffice.org/67564 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/appl/sfxhelp.cxx')
-rw-r--r--sfx2/source/appl/sfxhelp.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx
index 0510d7f537a2..ce484741909d 100644
--- a/sfx2/source/appl/sfxhelp.cxx
+++ b/sfx2/source/appl/sfxhelp.cxx
@@ -844,7 +844,7 @@ bool rewriteFlatpakHelpRootUrl(OUString * helpRootUrl) {
"sfx.appl",
"LIBO_FLATPAK mode /.flatpak-info [Instance] app-path \"" << path
<< "\" doesn't contain /app/org.libreoffice.LibreOffice/");
- throw Failure();
+ throw Failure();
}
auto const i2 = i1 + segments.size;
auto i3 = path.indexOf('/', i2);
@@ -853,7 +853,7 @@ bool rewriteFlatpakHelpRootUrl(OUString * helpRootUrl) {
"sfx.appl",
"LIBO_FLATPAK mode /.flatpak-info [Instance] app-path \"" << path
<< "\" doesn't contain branch segment");
- throw Failure();
+ throw Failure();
}
i3 = path.indexOf('/', i3 + 1);
if (i3 == -1) {
@@ -861,7 +861,7 @@ bool rewriteFlatpakHelpRootUrl(OUString * helpRootUrl) {
"sfx.appl",
"LIBO_FLATPAK mode /.flatpak-info [Instance] app-path \"" << path
<< "\" doesn't contain sha segment");
- throw Failure();
+ throw Failure();
}
++i3;
auto const i4 = path.indexOf('/', i3);
@@ -870,7 +870,7 @@ bool rewriteFlatpakHelpRootUrl(OUString * helpRootUrl) {
"sfx.appl",
"LIBO_FLATPAK mode /.flatpak-info [Instance] app-path \"" << path
<< "\" doesn't contain files segment");
- throw Failure();
+ throw Failure();
}
path = path.copy(0, i1) + "/runtime/org.libreoffice.LibreOffice.Help/"
+ path.copy(i2, i3 - i2) + sha + path.copy(i4);