mirror of
https://github.com/transmission/transmission.git
synced 2025-12-19 18:08:31 +00:00
refactor: utils naming (#5696)
* chore: rename tr_strvContains to tr_strv_contains * chore: rename tr_strvStartsWith to tr_strv_starts_with * chore: rename tr_strvEndsWith to tr_strv_ends_with * chore: rename tr_strvSep to tr_strv_sep * chore: rename tr_strvStrip to tr_strv_strip * chore: rename tr_strvToBuf to tr_strv_to_buf * refactor: rename tr_saveFile() to tr_file_save() rename tr_loadFile() to tr_file_read() rename tr_moveFile() to tr_file_move() * refactor: rename tr_parseNum() to tr_num_parse() refactor: rename tr_parseNumRange() to tr_num_parse_range() * chore: group related functions together in header
This commit is contained in:
@@ -689,7 +689,7 @@ void DetailsDialog::Impl::refreshInfo(std::vector<tr_torrent*> const& torrents)
|
||||
}
|
||||
else
|
||||
{
|
||||
auto const creator = tr_strvStrip(infos.front().creator != nullptr ? infos.front().creator : "");
|
||||
auto const creator = tr_strv_strip(infos.front().creator != nullptr ? infos.front().creator : "");
|
||||
auto const date = infos.front().date_created;
|
||||
auto const datestr = get_date_string(date);
|
||||
bool const mixed_creator = std::any_of(
|
||||
|
||||
Reference in New Issue
Block a user