From 2ea11eb5abd822ebd2692f648033fc4be94902a6 Mon Sep 17 00:00:00 2001 From: daboe01 Date: Mon, 6 Apr 2026 11:58:00 +0200 Subject: [PATCH] formatting --- Tests/Manual/TableTest/DataView/AppController.j | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Tests/Manual/TableTest/DataView/AppController.j b/Tests/Manual/TableTest/DataView/AppController.j index 4552e9aff..ec5c38dd1 100644 --- a/Tests/Manual/TableTest/DataView/AppController.j +++ b/Tests/Manual/TableTest/DataView/AppController.j @@ -100,18 +100,17 @@ var AppControllerInstance = nil; if (aRowIndex < 0 || aRowIndex >= [rows count]) return nil; - var info =[rows objectAtIndex:aRowIndex], + var info = [rows objectAtIndex:aRowIndex], filename = [info valueForKey:@"filename"], - isUploading =[info valueForKey:@"uploading"], + isUploading = [info valueForKey:@"uploading"], progress = [info valueForKey:@"progress"]; // Provide a dynamic tooltip based on the state of the data in the row if (isUploading) - return[CPString stringWithFormat:@"Uploading '%@' (%d%% complete)", filename, progress]; + return [CPString stringWithFormat:@"Uploading '%@' (%d%% complete)", filename, progress]; - return[CPString stringWithFormat:@"File: %@\nStatus: Idle", filename]; + return [CPString stringWithFormat:@"File: %@\nStatus: Idle", filename]; } -// -------------------------------------------------------------------------------------- - (@action)start:(id)sender {