mirror of
https://github.com/transmission/transmission
synced 2024-12-24 08:43:27 +00:00
silence warnings about string literals
This commit is contained in:
parent
9c8395d109
commit
06d250a7a2
1 changed files with 2 additions and 2 deletions
|
@ -653,7 +653,7 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
|
||||||
NSBeginAlertSheet(NSLocalizedString(@"Are you sure you want to quit?", "Confirm Quit panel -> title"),
|
NSBeginAlertSheet(NSLocalizedString(@"Are you sure you want to quit?", "Confirm Quit panel -> title"),
|
||||||
NSLocalizedString(@"Quit", "Confirm Quit panel -> button"),
|
NSLocalizedString(@"Quit", "Confirm Quit panel -> button"),
|
||||||
NSLocalizedString(@"Cancel", "Confirm Quit panel -> button"), nil, fWindow, self,
|
NSLocalizedString(@"Cancel", "Confirm Quit panel -> button"), nil, fWindow, self,
|
||||||
@selector(quitSheetDidEnd:returnCode:contextInfo:), nil, nil, message);
|
@selector(quitSheetDidEnd:returnCode:contextInfo:), nil, nil, @"%@", message);
|
||||||
return NSTerminateLater;
|
return NSTerminateLater;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1407,7 +1407,7 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
|
||||||
|
|
||||||
NSBeginAlertSheet(title, NSLocalizedString(@"Remove", "Removal confirm panel -> button"),
|
NSBeginAlertSheet(title, NSLocalizedString(@"Remove", "Removal confirm panel -> button"),
|
||||||
NSLocalizedString(@"Cancel", "Removal confirm panel -> button"), nil, fWindow, self,
|
NSLocalizedString(@"Cancel", "Removal confirm panel -> button"), nil, fWindow, self,
|
||||||
nil, @selector(removeSheetDidEnd:returnCode:contextInfo:), dict, message);
|
nil, @selector(removeSheetDidEnd:returnCode:contextInfo:), dict, @"%@", message);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue