[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - android/experimental android/README

Miklos Vajna vmiklos at collabora.co.uk
Fri Apr 3 03:58:50 PDT 2015


 android/README                                                                  |    6 +++---
 android/experimental/LOAndroid3/src/java/org/libreoffice/ToolbarController.java |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit db3b5c993c1c4bb20be5bc997e8e6ecd2f176e37
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Fri Apr 3 12:58:17 2015 +0200

    android: Insure -> Ensure
    
    Change-Id: I33d8282210329d8bb3a471a7c717fcf653930e95

diff --git a/android/README b/android/README
index bd570e9..c0a7e93 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 504c2f3..358617f 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() {


More information about the Libreoffice-commits mailing list