diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2023-01-18 10:44:33 +0100 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2023-01-18 11:28:31 +0000 |
commit | 031f7527f477e0e5561b2de26725d6e45f344c93 (patch) | |
tree | 9a37af4c29cdb2113927a2e3a67f5dcae4e3a502 | |
parent | e6b2761cb7299d2e93ce5cfc5b53309c6588f2ee (diff) |
Fix typo
Change-Id: Ifc9748fc33c72ad6e0cb334ca22ebb8b488164c9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145710
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
-rw-r--r-- | framework/qa/complex/framework/recovery/RecoveryTools.java | 2 | ||||
-rw-r--r-- | odk/examples/cpp/Draw/Draw.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/qa/complex/framework/recovery/RecoveryTools.java b/framework/qa/complex/framework/recovery/RecoveryTools.java index 3a9451250049..cb0183caf455 100644 --- a/framework/qa/complex/framework/recovery/RecoveryTools.java +++ b/framework/qa/complex/framework/recovery/RecoveryTools.java @@ -156,7 +156,7 @@ public class RecoveryTools { if (userPath.equals(""))userPath = utils.expandMacro(xMSF, "${$ORIGIN/bootstrap.ini:UserInstallation}"); System.out.println("userPath:'" + userPath + "'"); - if (userPath.equals("")) throw new com.sun.star.io.IOException("could not get user path at bootstraping"); + if (userPath.equals("")) throw new com.sun.star.io.IOException("could not get user path at bootstrapping"); String recoveryFolder = utils.getSystemURL(userPath + "/user/backup"); diff --git a/odk/examples/cpp/Draw/Draw.cxx b/odk/examples/cpp/Draw/Draw.cxx index 843bdd553346..baed25444155 100644 --- a/odk/examples/cpp/Draw/Draw.cxx +++ b/odk/examples/cpp/Draw/Draw.cxx @@ -66,7 +66,7 @@ int main() } catch (Exception& e) { - std::cout << "Error: cannot do bootstraping." << std::endl << e.Message << std::endl; + std::cout << "Error: cannot do bootstrapping." << std::endl << e.Message << std::endl; exit(1); } |