summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorMert Tumer <merttumer@outlook.com>2018-11-01 20:11:37 +0300
committerGülşah Köse <gulsah.1004@gmail.com>2018-11-02 07:02:28 +0100
commit9ec1f722caedbeb04f96258f23442f8ee92a42be (patch)
treeed6b4f1973f2919b53b2f5224ed7518876b83115 /android
parentfb5b8c524ea793638d2db6bf884553e728ac6a55 (diff)
[Pardus] fix missing break in switch case on Android
missing break causes bug on buttons on Formatting tab This patch is sponsored by ULAKBIM/Pardus project. Signed-off-by: Mert Tumer <merttumer@outlook.com> Change-Id: I8a20b542aa319591e9dea5591ed554954222d690 Reviewed-on: https://gerrit.libreoffice.org/62756 Tested-by: Jenkins Reviewed-by: Gülşah Köse <gulsah.1004@gmail.com>
Diffstat (limited to 'android')
-rw-r--r--android/source/src/java/org/libreoffice/FormattingController.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/android/source/src/java/org/libreoffice/FormattingController.java b/android/source/src/java/org/libreoffice/FormattingController.java
index 63b4cc53ad35..20a5cf3b7944 100644
--- a/android/source/src/java/org/libreoffice/FormattingController.java
+++ b/android/source/src/java/org/libreoffice/FormattingController.java
@@ -141,10 +141,11 @@ class FormattingController implements View.OnClickListener {
break;
case R.id.button_insert_picture:
insertPicture();
+ break;
case R.id.button_insert_table:
insertTable();
break;
- case R.id.button_delete_table:
+ case R.id.button_delete_table:
deleteTable();
break;
}