diff options
author | Jan Holesovsky <kendy@collabora.com> | 2015-03-12 18:16:51 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-03-16 09:38:10 +0100 |
commit | 5df6cd16a2604163ee8e19edadba48de65ba205e (patch) | |
tree | f343572b2513c10f05a41f9455ac78e351a7472f /android/Bootstrap/src/org | |
parent | e6f7b8823af239a69bc108cce82629c03e41039a (diff) |
android: Make the Bold button actually work - switches to typing in bold.
Change-Id: I48da0f3cc918bda1cdb396b4ea72a82eddafb9a8
Diffstat (limited to 'android/Bootstrap/src/org')
-rw-r--r-- | android/Bootstrap/src/org/libreoffice/kit/Document.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/android/Bootstrap/src/org/libreoffice/kit/Document.java b/android/Bootstrap/src/org/libreoffice/kit/Document.java index 0e0dd594cf58..5d97656879cf 100644 --- a/android/Bootstrap/src/org/libreoffice/kit/Document.java +++ b/android/Bootstrap/src/org/libreoffice/kit/Document.java @@ -133,6 +133,12 @@ public class Document { public native void postMouseEvent(int type, int x, int y, int count); /** + * Post a .uno: command to LOK + * @param command - the command, like ".uno:Bold" + */ + public native void postUnoCommand(String command); + + /** * Change text selection. * @param type - text selection type * @param x - x coordinate |