From 967ff0c7b9d2943ca8cd4045d7037543feeeb67c Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Tue, 1 Apr 2025 23:01:25 +0200 Subject: [PATCH] typo: Onine -> Online Change-Id: I6fd8350e74a63d8b8919c781b98698b4cbac92ba Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183600 Tested-by: Jenkins Reviewed-by: Andras Timar --- desktop/source/lib/init.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index f381deef94a1..b586b2055814 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -4221,7 +4221,7 @@ static void doc_paintTile(LibreOfficeKitDocument* pThis, #if defined(IOS) double fDPIScale = 1.0; - // Onine uses the LOK_TILEMODE_RGBA by default so flip the normal flags + // Online uses the LOK_TILEMODE_RGBA by default so flip the normal flags // to kCGImageAlphaPremultipliedLast | kCGImageByteOrder32Big CGContextRef pCGContext = CGBitmapContextCreate(pBuffer, nCanvasWidth, nCanvasHeight, 8, nCanvasWidth * 4, CGColorSpaceCreateDeviceRGB(), @@ -7157,7 +7157,7 @@ static void doc_paintWindowForView(LibreOfficeKitDocument* pThis, unsigned nLOKW comphelper::LibreOfficeKit::setDPIScale(fDPIScale); #if defined(IOS) - // Onine uses the LOK_TILEMODE_RGBA by default so flip the normal flags + // Online uses the LOK_TILEMODE_RGBA by default so flip the normal flags // to kCGImageAlphaNoneSkipLast | kCGImageByteOrder32Big CGContextRef cgc = CGBitmapContextCreate(pBuffer, nWidth, nHeight, 8, nWidth*4, CGColorSpaceCreateDeviceRGB(), kCGImageAlphaNoneSkipLast | kCGImageByteOrder32Big);