From 005198d9131084f59b55982eff81de6afb9c982f Mon Sep 17 00:00:00 2001 From: Janus Date: Tue, 21 Apr 2015 08:48:25 +0000 Subject: [PATCH] ShowImage: Fixes wrong indentation. --- src/apps/showimage/ShowImageWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/showimage/ShowImageWindow.cpp b/src/apps/showimage/ShowImageWindow.cpp index 64ad09d77f..de12f93825 100644 --- a/src/apps/showimage/ShowImageWindow.cpp +++ b/src/apps/showimage/ShowImageWindow.cpp @@ -1524,7 +1524,7 @@ ShowImageWindow::_SaveWidthAndHeight() BRect bounds = fImageView->Bitmap()->Bounds(); int32 width, height; - width = bounds.IntegerWidth() + 1; + width = bounds.IntegerWidth() + 1; height = bounds.IntegerHeight() + 1; BFile file(&fNavigator.CurrentRef(), B_WRITE_ONLY);