summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2022-05-09 12:15:41 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2022-05-09 23:45:49 +0200
commite5fb120a32d04e241b35a7e63894c744196f576b (patch)
treed7078e822816c52ca3aeabbe1a85e425f6998f86 /android
parent7a4aa62a1ed171a5edd73090de8a7db381ea76e0 (diff)
Fix typo in code
Change-Id: I6fae9a4df450f80ee2af59e271a8cb1dd8bc918f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134047 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Michael Weghorn <m.weghorn@posteo.de> Tested-by: Jenkins
Diffstat (limited to 'android')
-rw-r--r--android/source/src/java/org/libreoffice/ui/PageView.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/android/source/src/java/org/libreoffice/ui/PageView.java b/android/source/src/java/org/libreoffice/ui/PageView.java
index 11b365f2bbcc..4c3f69562250 100644
--- a/android/source/src/java/org/libreoffice/ui/PageView.java
+++ b/android/source/src/java/org/libreoffice/ui/PageView.java
@@ -22,21 +22,21 @@ public class PageView extends View{
public PageView(Context context ) {
super(context);
bmp = BitmapFactory.decodeResource(getResources(), R.drawable.dummy_page);
- intialise();
+ initialise();
}
public PageView(Context context, AttributeSet attrs) {
super(context, attrs);
bmp = BitmapFactory.decodeResource(getResources(), R.drawable.dummy_page);
Log.d(LOGTAG, bmp.toString());
- intialise();
+ initialise();
}
public PageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
bmp = BitmapFactory.decodeResource(getResources(), R.drawable.dummy_page);//load a "page"
- intialise();
+ initialise();
}
- private void intialise(){
+ private void initialise(){
mPaintBlack = new Paint();
mPaintBlack.setARGB(255, 0, 0, 0);
Log.d(LOGTAG, " Doing some set-up");