From 5b6e8d49c12913541fe86467392f96662a92b223 Mon Sep 17 00:00:00 2001 From: John Scipione Date: Wed, 4 Mar 2015 14:22:02 -0500 Subject: [PATCH] Tracker: Obligatory style fixes --- src/kits/tracker/InfoWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kits/tracker/InfoWindow.cpp b/src/kits/tracker/InfoWindow.cpp index 72036a0b44..bdde334e9b 100644 --- a/src/kits/tracker/InfoWindow.cpp +++ b/src/kits/tracker/InfoWindow.cpp @@ -673,7 +673,7 @@ BInfoWindow::MessageReceived(BMessage* message) void -BInfoWindow::GetSizeString(BString &result, off_t size, int32 fileCount) +BInfoWindow::GetSizeString(BString& result, off_t size, int32 fileCount) { static BMessageFormat sizeFormat(B_TRANSLATE( "{0, plural, one{(# byte)} other{(# bytes)}}")); @@ -685,7 +685,7 @@ BInfoWindow::GetSizeString(BString &result, off_t size, int32 fileCount) if (size >= kKBSize) { result << " "; - + sizeFormat.Format(result, size); // "bytes" translation could come from string_for_size // which could be part of the localekit itself