From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43940) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VvQYx-0001D6-Bi for qemu-devel@nongnu.org; Tue, 24 Dec 2013 06:54:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VvQYw-0002lf-N0 for qemu-devel@nongnu.org; Tue, 24 Dec 2013 06:54:15 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:43918) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VvQYw-0002lP-Gp for qemu-devel@nongnu.org; Tue, 24 Dec 2013 06:54:14 -0500 From: Peter Maydell Date: Tue, 24 Dec 2013 11:54:12 +0000 Message-Id: <1387886052-27067-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH] ui/cocoa: Remove stray tabs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Andreas=20F=C3=A4rber?= , patches@linaro.org The ui/cocoa.m file has just three lines with hardcoded tabs; fix them. Signed-off-by: Peter Maydell --- I'm generally fairly conservative about "fix indent" patches, but three lines seems sufficiently minimal to be worth just zapping. Happy to drop this if people disagree. ui/cocoa.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/cocoa.m b/ui/cocoa.m index 39c62ad..58460a0 100644 --- a/ui/cocoa.m +++ b/ui/cocoa.m @@ -428,8 +428,8 @@ QemuCocoaView *cocoaView; CGDataProviderRelease(dataProviderRef); //sync host window color space with guests - screen.bitsPerPixel = surface_bits_per_pixel(surface); - screen.bitsPerComponent = surface_bytes_per_pixel(surface) * 2; + screen.bitsPerPixel = surface_bits_per_pixel(surface); + screen.bitsPerComponent = surface_bytes_per_pixel(surface) * 2; dataProviderRef = CGDataProviderCreateWithData(NULL, surface_data(surface), w * 4 * h, NULL); @@ -775,7 +775,7 @@ QemuCocoaView *cocoaView; [normalWindow setContentView:cocoaView]; [normalWindow useOptimizedDrawing:YES]; [normalWindow makeKeyAndOrderFront:self]; - [normalWindow center]; + [normalWindow center]; } return self; -- 1.7.11.4