Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Event System/Actions/Action-OpenLog.m
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ - (RDLogType *) allocNamedType:(NSString *) logType
}


extern int scrollbackSort(id obj1, id obj2, void *context);
extern NSInteger scrollbackSort(id obj1, id obj2, void *context);

- (BOOL) executeForState:(AtlantisState *) state
{
Expand Down
2 changes: 1 addition & 1 deletion Log System/RDLogOpener.m
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ - (void) dealloc
[super dealloc];
}

NSInteger scrollbackSort(id obj1, id obj2, void *context)
NSInteger scrollbackSort(id obj1, id obj2, void * __nullable context)
{
NSAttributedString *st1 = (NSAttributedString *)obj1;
NSAttributedString *st2 = (NSAttributedString *)obj2;
Expand Down
1 change: 1 addition & 0 deletions Scripting/PerlScriptingEngine.m
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ - (NSString *) scriptEngineVersion
// id perlVersion = [_rdPerlInterpreter valueForKey:@"perlVersion"];
//
// return (NSString *)perlVersion;
return @"";
}

- (NSString *) scriptEngineCopyright
Expand Down