mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 01:59:52 -06:00
Merge pull request #8271 from lioncash/qstring
DolphinQt: Replace unnecessary QStringLiterals with alternatives where applicable
This commit is contained in:
@ -152,8 +152,8 @@ void ARCodeWidget::UpdateList()
|
||||
{
|
||||
const auto& ar = m_ar_codes[i];
|
||||
auto* item = new QListWidgetItem(QString::fromStdString(ar.name)
|
||||
.replace(QStringLiteral("<"), QStringLiteral("<"))
|
||||
.replace(QStringLiteral(">"), QStringLiteral(">")));
|
||||
.replace(QStringLiteral("<"), QChar::fromLatin1('<'))
|
||||
.replace(QStringLiteral(">"), QChar::fromLatin1('>')));
|
||||
|
||||
item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsUserCheckable |
|
||||
Qt::ItemIsDragEnabled);
|
||||
|
@ -124,7 +124,7 @@ bool CheatCodeEditor::AcceptAR()
|
||||
std::vector<ActionReplay::AREntry> entries;
|
||||
std::vector<std::string> encrypted_lines;
|
||||
|
||||
QStringList lines = m_code_edit->toPlainText().split(QStringLiteral("\n"));
|
||||
QStringList lines = m_code_edit->toPlainText().split(QLatin1Char{'\n'});
|
||||
|
||||
for (int i = 0; i < lines.size(); i++)
|
||||
{
|
||||
@ -133,7 +133,7 @@ bool CheatCodeEditor::AcceptAR()
|
||||
if (line.isEmpty())
|
||||
continue;
|
||||
|
||||
QStringList values = line.split(QStringLiteral(" "));
|
||||
QStringList values = line.split(QLatin1Char{' '});
|
||||
|
||||
bool good = true;
|
||||
|
||||
@ -152,7 +152,7 @@ bool CheatCodeEditor::AcceptAR()
|
||||
}
|
||||
else
|
||||
{
|
||||
QStringList blocks = line.split(QStringLiteral("-"));
|
||||
QStringList blocks = line.split(QLatin1Char{'-'});
|
||||
|
||||
if (blocks.size() == 3 && blocks[0].size() == 4 && blocks[1].size() == 4 &&
|
||||
blocks[2].size() == 5)
|
||||
@ -230,7 +230,7 @@ bool CheatCodeEditor::AcceptGecko()
|
||||
{
|
||||
std::vector<Gecko::GeckoCode::Code> entries;
|
||||
|
||||
QStringList lines = m_code_edit->toPlainText().split(QStringLiteral("\n"));
|
||||
QStringList lines = m_code_edit->toPlainText().split(QLatin1Char{'\n'});
|
||||
|
||||
for (int i = 0; i < lines.size(); i++)
|
||||
{
|
||||
@ -239,7 +239,7 @@ bool CheatCodeEditor::AcceptGecko()
|
||||
if (line.isEmpty())
|
||||
continue;
|
||||
|
||||
QStringList values = line.split(QStringLiteral(" "));
|
||||
QStringList values = line.split(QLatin1Char{' '});
|
||||
|
||||
bool good = values.size() == 2;
|
||||
|
||||
@ -289,7 +289,7 @@ bool CheatCodeEditor::AcceptGecko()
|
||||
m_gecko_code->user_defined = true;
|
||||
|
||||
std::vector<std::string> note_lines;
|
||||
for (QString line : m_notes_edit->toPlainText().split(QStringLiteral("\n")))
|
||||
for (const QString& line : m_notes_edit->toPlainText().split(QLatin1Char{'\n'}))
|
||||
note_lines.push_back(line.toStdString());
|
||||
|
||||
m_gecko_code->notes = std::move(note_lines);
|
||||
|
@ -263,7 +263,7 @@ DiscIO::Partition FilesystemWidget::GetPartitionFromID(int id)
|
||||
|
||||
void FilesystemWidget::ExtractPartition(const DiscIO::Partition& partition, const QString& out)
|
||||
{
|
||||
ExtractDirectory(partition, QStringLiteral(""), out + QStringLiteral("/files"));
|
||||
ExtractDirectory(partition, QString{}, out + QStringLiteral("/files"));
|
||||
ExtractSystemData(partition, out);
|
||||
}
|
||||
|
||||
|
@ -179,7 +179,7 @@ void GameConfigEdit::SetOption(const QString& section, const QString& key, const
|
||||
if (value_cursor.isNull())
|
||||
{
|
||||
section_cursor.clearSelection();
|
||||
section_cursor.insertText(QStringLiteral("\n") + new_line);
|
||||
section_cursor.insertText(QLatin1Char{'\n'} + new_line);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -280,8 +280,8 @@ void GeckoCodeWidget::UpdateList()
|
||||
const auto& code = m_gecko_codes[i];
|
||||
|
||||
auto* item = new QListWidgetItem(QString::fromStdString(code.name)
|
||||
.replace(QStringLiteral("<"), QStringLiteral("<"))
|
||||
.replace(QStringLiteral(">"), QStringLiteral(">")));
|
||||
.replace(QStringLiteral("<"), QChar::fromLatin1('<'))
|
||||
.replace(QStringLiteral(">"), QChar::fromLatin1('>')));
|
||||
|
||||
item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsUserCheckable |
|
||||
Qt::ItemIsDragEnabled);
|
||||
|
@ -189,7 +189,7 @@ void EnhancementsWidget::LoadPPShaders()
|
||||
m_pp_effect->setEnabled(supports_postprocessing);
|
||||
|
||||
m_pp_effect->setToolTip(supports_postprocessing ?
|
||||
QStringLiteral("") :
|
||||
QString{} :
|
||||
tr("%1 doesn't support this feature.")
|
||||
.arg(tr(g_video_backend->GetDisplayName().c_str())));
|
||||
|
||||
|
@ -299,7 +299,7 @@ void GeneralWidget::OnBackendChanged(const QString& backend_name)
|
||||
m_adapter_combo->setEnabled(supports_adapters && !Core::IsRunning());
|
||||
|
||||
m_adapter_combo->setToolTip(supports_adapters ?
|
||||
QStringLiteral("") :
|
||||
QString{} :
|
||||
tr("%1 doesn't support this feature.")
|
||||
.arg(tr(g_video_backend->GetDisplayName().c_str())));
|
||||
}
|
||||
|
@ -129,8 +129,8 @@ void HacksWidget::OnBackendChanged(const QString& backend_name)
|
||||
|
||||
const QString tooltip = tr("%1 doesn't support this feature on your system.").arg(backend_name);
|
||||
|
||||
m_gpu_texture_decoding->setToolTip(!gpu_texture_decoding ? tooltip : QStringLiteral(""));
|
||||
m_disable_bounding_box->setToolTip(!bbox ? tooltip : QStringLiteral(""));
|
||||
m_gpu_texture_decoding->setToolTip(!gpu_texture_decoding ? tooltip : QString{});
|
||||
m_disable_bounding_box->setToolTip(!bbox ? tooltip : QString{});
|
||||
}
|
||||
|
||||
void HacksWidget::ConnectWidgets()
|
||||
|
@ -24,19 +24,19 @@ void GCKeyboardEmu::CreateMainLayout()
|
||||
m_main_layout = new QHBoxLayout();
|
||||
|
||||
m_main_layout->addWidget(
|
||||
CreateGroupBox(QStringLiteral(""), Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb0x)));
|
||||
CreateGroupBox(QString{}, Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb0x)));
|
||||
m_main_layout->addWidget(
|
||||
CreateGroupBox(QStringLiteral(""), Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb1x)));
|
||||
CreateGroupBox(QString{}, Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb1x)));
|
||||
m_main_layout->addWidget(
|
||||
CreateGroupBox(QStringLiteral(""), Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb2x)));
|
||||
CreateGroupBox(QString{}, Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb2x)));
|
||||
m_main_layout->addWidget(
|
||||
CreateGroupBox(QStringLiteral(""), Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb3x)));
|
||||
CreateGroupBox(QString{}, Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb3x)));
|
||||
m_main_layout->addWidget(
|
||||
CreateGroupBox(QStringLiteral(""), Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb4x)));
|
||||
CreateGroupBox(QString{}, Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb4x)));
|
||||
|
||||
auto* vbox_layout = new QVBoxLayout();
|
||||
vbox_layout->addWidget(
|
||||
CreateGroupBox(QStringLiteral(""), Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb5x)));
|
||||
CreateGroupBox(QString{}, Keyboard::GetGroup(GetPort(), KeyboardGroup::Kb5x)));
|
||||
|
||||
m_main_layout->addLayout(vbox_layout);
|
||||
|
||||
|
@ -32,8 +32,8 @@ constexpr int SLIDER_TICK_COUNT = 100;
|
||||
// Escape ampersands and remove ticks
|
||||
static QString ToDisplayString(QString&& string)
|
||||
{
|
||||
return string.replace(QStringLiteral("&"), QStringLiteral("&&"))
|
||||
.replace(QStringLiteral("`"), QStringLiteral(""));
|
||||
return string.replace(QLatin1Char{'&'}, QStringLiteral("&&"))
|
||||
.replace(QLatin1Char{'`'}, QString{});
|
||||
}
|
||||
|
||||
bool MappingButton::IsInput() const
|
||||
|
@ -33,7 +33,7 @@ QString GetExpressionForControl(const QString& control_name,
|
||||
if (control_device != default_device)
|
||||
{
|
||||
expr += QString::fromStdString(control_device.ToString());
|
||||
expr += QStringLiteral(":");
|
||||
expr += QLatin1Char{':'};
|
||||
}
|
||||
|
||||
// append the control name
|
||||
|
@ -18,7 +18,7 @@ MappingDouble::MappingDouble(MappingWidget* parent, ControllerEmu::NumericSettin
|
||||
setFixedWidth(WIDGET_MAX_WIDTH);
|
||||
|
||||
if (const auto ui_suffix = m_setting.GetUISuffix())
|
||||
setSuffix(QStringLiteral(" ") + tr(ui_suffix));
|
||||
setSuffix(QLatin1Char{' '} + tr(ui_suffix));
|
||||
|
||||
if (const auto ui_description = m_setting.GetUIDescription())
|
||||
setToolTip(tr(ui_description));
|
||||
|
@ -308,8 +308,8 @@ void MappingWindow::OnGlobalDevicesChanged()
|
||||
{
|
||||
// Selected device is not currently attached.
|
||||
const auto qname = QString::fromStdString(default_device);
|
||||
m_devices_combo->addItem(
|
||||
QStringLiteral("[") + tr("disconnected") + QStringLiteral("] ") + qname, qname);
|
||||
m_devices_combo->addItem(QLatin1Char{'['} + tr("disconnected") + QStringLiteral("] ") + qname,
|
||||
qname);
|
||||
m_devices_combo->setCurrentIndex(m_devices_combo->count() - 1);
|
||||
}
|
||||
}
|
||||
@ -339,7 +339,7 @@ void MappingWindow::SetMappingType(MappingWindow::Type type)
|
||||
case Type::MAPPING_GC_MICROPHONE:
|
||||
widget = new GCMicrophone(this);
|
||||
setWindowTitle(tr("GameCube Microphone Slot %1")
|
||||
.arg(GetPort() == 0 ? QStringLiteral("A") : QStringLiteral("B")));
|
||||
.arg(GetPort() == 0 ? QLatin1Char{'A'} : QLatin1Char{'B'}));
|
||||
AddWidget(tr("Microphone"), widget);
|
||||
break;
|
||||
case Type::MAPPING_WIIMOTE_EMU:
|
||||
|
Reference in New Issue
Block a user