summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-04-03 12:58:17 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-04-07 09:18:17 +0200
commitd4a39c158bdf67fe10d12b97f779f95568e51a98 (patch)
treedd273e4c59873a4f0e7835d68d7a9ef11927e072 /android
parent7297feb6bcc89c55d1768794754f3b7d796c4c75 (diff)
android: Insure -> Ensure
Change-Id: I33d8282210329d8bb3a471a7c717fcf653930e95
Diffstat (limited to 'android')
-rw-r--r--android/README6
-rw-r--r--android/experimental/LOAndroid3/src/java/org/libreoffice/ToolbarController.java4
2 files changed, 5 insertions, 5 deletions
diff --git a/android/README b/android/README
index bd570e9a99b3..c0a7e934c625 100644
--- a/android/README
+++ b/android/README
@@ -77,7 +77,7 @@ Document view classes
- GeckoLayerClient (org.mozilla.gecko.gfx.GeckoLayerClient) is the middle man of the
application, which connects all the bits together. It is the document view layer
holder so the any management (including tiled rendering) usually go through this
- class. It listenes to draw requests and viewport changes from PanZoomController
+ class. It listens to draw requests and viewport changes from PanZoomController
(see "Touch events").
Touch events, scrolling and zooming
@@ -128,7 +128,7 @@ For editing there are 2 coarse tasks that the LibreOffice app must do:
In most cases when an input event happens and is send to the LO core, then a message from
LO core follows. For example: when the user writes to the keyboard, key event is sent and
-a invalidation requst from LO core follows. When user touches an image, a mouse event is
+a invalidation request from LO core follows. When user touches an image, a mouse event is
sent, and a "new graphic selection" message from LO core follows.
All keyboard and touch events are send to LOKitThread as LOEvents. In LOKitThread they are
@@ -220,7 +220,7 @@ ERROR: Could not extract package's data directory. Are you sure that
(gdb) python sys.path.insert(0, "/master/solenv/gdb")
(gdb) source /master/instdir/program/libuno_sal.so.3-gdb.py
-* Debuggint the Java part
+* Debugging the Java part
At the moment the code is not organized in a way that would make Eclipse or
Android Studio happy as-is, so the quickest way is to use the jdb command-line
diff --git a/android/experimental/LOAndroid3/src/java/org/libreoffice/ToolbarController.java b/android/experimental/LOAndroid3/src/java/org/libreoffice/ToolbarController.java
index 504c2f3a1128..358617f208aa 100644
--- a/android/experimental/LOAndroid3/src/java/org/libreoffice/ToolbarController.java
+++ b/android/experimental/LOAndroid3/src/java/org/libreoffice/ToolbarController.java
@@ -28,7 +28,7 @@ public class ToolbarController {
* Change the toolbar to edit mode.
*/
void switchToEditMode() {
- // Insure the change is done on UI thread
+ // Ensure the change is done on UI thread
LOKitShell.getMainHandler().post(new Runnable() {
@Override
public void run() {
@@ -44,7 +44,7 @@ public class ToolbarController {
* Change the toolbar to view mode.
*/
void switchToViewMode() {
- // Insure the change is done on UI thread
+ // Ensure the change is done on UI thread
LOKitShell.getMainHandler().post(new Runnable() {
@Override
public void run() {