Skip to content
Closed
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
8 changes: 4 additions & 4 deletions src/animationlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ void CharacterAnimationLayer::loadCharacterEmote(QString character, QString file

QVector<VPath> path_list;
QVector<QString> prefixed_emote_list;
for (const QString &prefix : qAsConst(prefixes))
for (const QString &prefix : std::as_const(prefixes))
{
path_list << ao_app->get_character_path(character, prefix + m_emote);
prefixed_emote_list << prefix + m_emote;
Expand Down Expand Up @@ -479,13 +479,13 @@ void CharacterAnimationLayer::setFrameEffects(QStringList data)
const EffectType effect_type = EFFECT_TYPE_LIST.at(i);

QStringList emotes = data.at(i).split("^");
for (const QString &emote : qAsConst(emotes))
for (const QString &emote : std::as_const(emotes))
{
QStringList emote_effects = emote.split("|");

const QString emote_name = emote_effects.takeFirst();

for (const QString &raw_effect : qAsConst(emote_effects))
for (const QString &raw_effect : std::as_const(emote_effects))
{
QStringList frame_data = raw_effect.split("=");

Expand Down Expand Up @@ -553,7 +553,7 @@ void CharacterAnimationLayer::notifyFrameEffect(int frameNumber)
auto it = m_effects.constFind(frameNumber);
if (it != m_effects.constEnd())
{
for (const FrameEffect &effect : qAsConst(*it))
for (const FrameEffect &effect : std::as_const(*it))
{
if (effect.emote_name == m_resolved_emote)
{
Expand Down
2 changes: 1 addition & 1 deletion src/animationloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ AnimationFrame AnimationLoader::frame(int frameNumber)
m_task_signal.wait(&m_task_lock);
}

AnimationFrame frame = qAsConst(m_frames)[frameNumber];
AnimationFrame frame = std::as_const(m_frames)[frameNumber];
m_task_lock.unlock();

return frame;
Expand Down
2 changes: 1 addition & 1 deletion src/aoapplication.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class VPath : QString
inline VPath operator+(const VPath &str) const { return VPath(this->toQString() + str.toQString()); }
};

inline size_t qHash(const VPath &key, uint seed = qGlobalQHashSeed())
inline size_t qHash(const VPath &key, uint seed = QHashSeed())
{
return qHash(key.toQString(), seed);
}
Expand Down
2 changes: 1 addition & 1 deletion src/aopacket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ QString AOPacket::toString(bool ensureEncoded)
QString message = m_header;
if (!m_content.isEmpty())
{
for (QString item : qAsConst(m_content))
for (QString item : std::as_const(m_content))
{
if (ensureEncoded)
{
Expand Down
2 changes: 1 addition & 1 deletion src/aoutils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void AOUtils::migrateEffects(QSettings &p_effects_ini)
}

int i = 0;
for (const QString &i_effect_key : qAsConst(l_key_list))
for (const QString &i_effect_key : std::as_const(l_key_list))
{
p_effects_ini.beginGroup(QString::number(i++));
p_effects_ini.setValue("name", i_effect_key);
Expand Down
2 changes: 1 addition & 1 deletion src/charselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void Courtroom::set_char_select_page()
ui_char_select_left->hide();
ui_char_select_right->hide();

for (AOCharButton *i_button : qAsConst(ui_char_button_list))
for (AOCharButton *i_button : std::as_const(ui_char_button_list))
{
i_button->hide();
i_button->move(0, 0);
Expand Down
14 changes: 7 additions & 7 deletions src/courtroom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ void Courtroom::set_mute_list()

QStringList sorted_mute_list;

for (const CharacterSlot &i_char : qAsConst(char_list))
for (const CharacterSlot &i_char : std::as_const(char_list))
{
sorted_mute_list.append(i_char.name);
}
Expand All @@ -722,7 +722,7 @@ void Courtroom::set_pair_list()
{
QStringList sorted_pair_list;

for (const CharacterSlot &i_char : qAsConst(char_list))
for (const CharacterSlot &i_char : std::as_const(char_list))
{
sorted_pair_list.append(i_char.name);
}
Expand Down Expand Up @@ -3084,7 +3084,7 @@ void Courtroom::do_transition(QString p_desk_mod, QString oldPosId, QString newP

void Courtroom::post_transition_cleanup()
{
for (kal::CharacterAnimationLayer *layer : qAsConst(ui_vp_char_list))
for (kal::CharacterAnimationLayer *layer : std::as_const(ui_vp_char_list))
{
bool is_visible = layer->isVisible();
layer->stopPlayback();
Expand Down Expand Up @@ -3368,7 +3368,7 @@ void Courtroom::handle_callwords()
// No more file IO on every message.
QStringList call_words = Options::getInstance().callwords();
// Loop through each word in the call words list
for (const QString &word : qAsConst(call_words))
for (const QString &word : std::as_const(call_words))
{
// If our message contains that specific call word
if (f_message.contains(word, Qt::CaseInsensitive))
Expand Down Expand Up @@ -5392,7 +5392,7 @@ void Courtroom::set_sfx_dropdown()
sound_list += ao_app->get_list_file(VPath("soundlist.ini"));

QStringList display_sounds;
for (const QString &sound : qAsConst(sound_list))
for (const QString &sound : std::as_const(sound_list))
{
QStringList unpacked = sound.split("=");
QString display = unpacked[0].trimmed();
Expand Down Expand Up @@ -5694,7 +5694,7 @@ void Courtroom::on_pair_list_clicked(QModelIndex p_index)
// Redo the character list.
QStringList sorted_pair_list;

for (const CharacterSlot &i_char : qAsConst(char_list))
for (const CharacterSlot &i_char : std::as_const(char_list))
{
sorted_pair_list.append(i_char.name);
}
Expand Down Expand Up @@ -5862,7 +5862,7 @@ void Courtroom::music_stop(bool no_effects)
if (!music_list.contains(fake_song))
{
// Loop through our music list
for (const QString &song : qAsConst(music_list))
for (const QString &song : std::as_const(music_list))
{
// Pick first song that does not contain a file extension
if (!song.contains('.'))
Expand Down
2 changes: 1 addition & 1 deletion src/demoserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ void DemoServer::load_demo(QString filename)
out.setCodec("UTF-8");
#endif
out << p_demo_data.dequeue();
for (const QString &line : qAsConst(p_demo_data))
for (const QString &line : std::as_const(p_demo_data))
{
out << "\n" << line;
}
Expand Down
2 changes: 1 addition & 1 deletion src/emotes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void Courtroom::set_emote_page()
ui_emote_left->hide();
ui_emote_right->hide();

for (AOEmoteButton *i_button : qAsConst(ui_emote_list))
for (AOEmoteButton *i_button : std::as_const(ui_emote_list))
{
i_button->hide();
}
Expand Down
6 changes: 3 additions & 3 deletions src/evidence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ void Courtroom::set_evidence_page()
ui_evidence_left->hide();
ui_evidence_right->hide();

for (AOEvidenceButton *i_button : qAsConst(ui_evidence_list))
for (AOEvidenceButton *i_button : std::as_const(ui_evidence_list))
{
i_button->hide();
}
Expand Down Expand Up @@ -481,7 +481,7 @@ void Courtroom::on_evidence_clicked(int p_id)
}

ui_evidence_name->setText(local_evidence_list.at(f_real_id).name);
for (AOEvidenceButton *i_button : qAsConst(ui_evidence_list))
for (AOEvidenceButton *i_button : std::as_const(ui_evidence_list))
{
i_button->setSelected(false);
}
Expand All @@ -508,7 +508,7 @@ void Courtroom::on_evidence_double_clicked(int p_id)
}
}

for (AOEvidenceButton *i_button : qAsConst(ui_evidence_list))
for (AOEvidenceButton *i_button : std::as_const(ui_evidence_list))
{
i_button->setSelected(false);
}
Expand Down
2 changes: 1 addition & 1 deletion src/lobby.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ void Lobby::list_servers()
ui_serverlist_search->setText("");

int i = 0;
for (const ServerInfo &i_server : qAsConst(ao_app->get_server_list()))
for (const ServerInfo &i_server : std::as_const(ao_app->get_server_list()))
{
QTreeWidgetItem *treeItem = new QTreeWidgetItem(ui_serverlist_tree);
treeItem->setData(0, Qt::DisplayRole, i);
Expand Down
6 changes: 3 additions & 3 deletions src/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ QVector<ServerInfo> Options::favorites()
auto grouplist = favorite.childGroups();
{ // remove all negative and non-numbers
auto filtered_grouplist = grouplist;
for (const QString &group : qAsConst(grouplist))
for (const QString &group : std::as_const(grouplist))
{
bool ok = false;
const int l_num = group.toInt(&ok);
Expand All @@ -674,7 +674,7 @@ QVector<ServerInfo> Options::favorites()
grouplist = std::move(filtered_grouplist);
}

for (const QString &group : qAsConst(grouplist))
for (const QString &group : std::as_const(grouplist))
{
ServerInfo f_server;
favorite.beginGroup(group);
Expand Down Expand Up @@ -763,7 +763,7 @@ QString Options::getUIAsset(QString f_asset_name)
l_paths.prepend(":/base/themes/" + theme() + "/" + subTheme() + "/" + f_asset_name);
}

for (const QString &l_path : qAsConst(l_paths))
for (const QString &l_path : std::as_const(l_paths))
{
if (QFile::exists(l_path))
{
Expand Down
2 changes: 1 addition & 1 deletion src/text_file_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ QStringList AOApplication::get_effects(QString p_char)

std::sort(l_group_list.begin(), l_group_list.end(), [](const QString &lhs, const QString &rhs) { return lhs.toInt() < rhs.toInt(); });

for (const QString &i_group : qAsConst(l_group_list))
for (const QString &i_group : std::as_const(l_group_list))
{
const QString l_key = i_group + "/name";
if (!l_effects_ini.contains(l_key))
Expand Down
10 changes: 5 additions & 5 deletions src/widgets/aooptionsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ void AOOptionsDialog::updateValues()
l_sorting.setNumericMode(true);
std::sort(l_themes.begin(), l_themes.end(), l_sorting);

for (const QString &l_theme : qAsConst(l_themes))
for (const QString &l_theme : std::as_const(l_themes))
{
if (!themes.contains(l_theme))
{
Expand All @@ -205,7 +205,7 @@ void AOOptionsDialog::updateValues()
}

QStringList l_subthemes = QDir(ao_app->get_real_path(ao_app->get_theme_path(""))).entryList(QDir::Dirs | QDir::NoDotAndDotDot);
for (const QString &l_subtheme : qAsConst(l_subthemes))
for (const QString &l_subtheme : std::as_const(l_subthemes))
{
if (l_subtheme.toLower() != "server" && l_subtheme.toLower() != "default" && l_subtheme.toLower() != "effects" && l_subtheme.toLower() != "misc")
{
Expand All @@ -221,7 +221,7 @@ void AOOptionsDialog::updateValues()
ui_privacy_policy->setHtml(document);
});

for (const OptionEntry &entry : qAsConst(optionEntries))
for (const OptionEntry &entry : std::as_const(optionEntries))
{
entry.load();
}
Expand All @@ -230,7 +230,7 @@ void AOOptionsDialog::updateValues()
void AOOptionsDialog::savePressed()
{
bool l_reload_theme_required = (ui_theme_combobox->currentText() != Options::getInstance().theme()) || (ui_theme_scaling_factor_sb->value() != Options::getInstance().themeScalingFactor());
for (const OptionEntry &entry : qAsConst(optionEntries))
for (const OptionEntry &entry : std::as_const(optionEntries))
{
entry.save();
}
Expand Down Expand Up @@ -281,7 +281,7 @@ void AOOptionsDialog::themeChanged(int i)

QStringList l_subthemes = QDir(ao_app->get_real_path(ao_app->get_theme_path("", ui_theme_combobox->itemText(i)))).entryList(QDir::Dirs | QDir::NoDotAndDotDot);

for (const QString &l_subthemes : qAsConst(l_subthemes))
for (const QString &l_subthemes : std::as_const(l_subthemes))
{
if (l_subthemes.toLower() != "server" && l_subthemes.toLower() != "default" && l_subthemes.toLower() != "effects" && l_subthemes.toLower() != "misc")
{
Expand Down
6 changes: 3 additions & 3 deletions src/widgets/playerlistwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void PlayerListWidget::updatePlayer(const PlayerUpdate &update)

void PlayerListWidget::reloadPlayers()
{
for (const PlayerData &player : qAsConst(m_player_map))
for (const PlayerData &player : std::as_const(m_player_map))
{
updatePlayer(player.id, false);
}
Expand All @@ -81,7 +81,7 @@ void PlayerListWidget::reloadPlayers()
void PlayerListWidget::setAuthenticated(bool f_state)
{
m_is_authenticated = f_state;
for (const PlayerData &data : qAsConst(m_player_map))
for (const PlayerData &data : std::as_const(m_player_map))
{
updatePlayer(data.id, false);
filterPlayerList();
Expand Down Expand Up @@ -150,7 +150,7 @@ void PlayerListWidget::removePlayer(int playerId)
void PlayerListWidget::filterPlayerList()
{
int area_id = m_player_map.value(ao_app->client_id).area_id;
for (QListWidgetItem *item : qAsConst(m_item_map))
for (QListWidgetItem *item : std::as_const(m_item_map))
{
if (!item)
{
Expand Down