android/source/src/java/org/libreoffice/ui/PageView.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit e5fb120a32d04e241b35a7e63894c744196f576b Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Mon May 9 12:15:41 2022 +0200 Commit: Andrea Gelmini <andrea.gelm...@gelma.net> CommitDate: Mon May 9 23:45:49 2022 +0200 Fix typo in code Change-Id: I6fae9a4df450f80ee2af59e271a8cb1dd8bc918f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134047 Reviewed-by: Julien Nabet <serval2...@yahoo.fr> Reviewed-by: Michael Weghorn <m.wegh...@posteo.de> Tested-by: Jenkins 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");