dolphin-emulator/Source/Core/DolphinQt/Config
Lioncash fef1b84f0a DolphinQt: Replace QStringLiteral with alternatives where applicable
QStringLiterals generate a buffer so that during runtime there's very
little cost to constructing a QString. However, this also means that
duplicated strings cannot be optimized out into a single entry that gets
referenced everywhere, taking up space in the binary.

Rather than use QStringLiteral(""), we can just use QString{} (the
default constructor) to signify the empty string. This gets rid of an
unnecessary string buffer from being created, saving a tiny bit of
space.

While we're at it, we can just use the character overloads of particular
functions when they're available instead of using a QString overload.
The characters in this case are Latin-1 to begin with, so we can just
specify the characters as QLatin1Char instances to use those overloads.
These will automatically convert to QChar if needed, so this is safe.
2019-07-30 09:06:03 -04:00
..
Graphics DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
Mapping DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
ARCodeWidget.cpp DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
ARCodeWidget.h Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more. 2019-07-24 00:18:58 +02:00
CheatCodeEditor.cpp DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
CheatCodeEditor.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
CheatWarningWidget.cpp Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more. 2019-07-24 00:18:58 +02:00
CheatWarningWidget.h Mark files as non-executable 2019-06-02 12:31:40 +01:00
ControllersWindow.cpp Qt/ControllersWindow: Fix radio buttons not getting disabled 2019-07-05 16:50:37 +02:00
ControllersWindow.h Remove unused function and translatable strings 2018-09-08 15:18:31 +02:00
FilesystemWidget.cpp DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
FilesystemWidget.h VolumeVerifier: Check hashes in Wii partitions 2019-04-09 14:18:45 +02:00
GameConfigEdit.cpp DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
GameConfigEdit.h Qt/GameConfigWidget: Complete overhaul 2019-01-26 00:41:22 +01:00
GameConfigHighlighter.cpp Qt/GameConfigWidget: Complete overhaul 2019-01-26 00:41:22 +01:00
GameConfigHighlighter.h Qt/GameConfigWidget: Complete overhaul 2019-01-26 00:41:22 +01:00
GameConfigWidget.cpp Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more. 2019-07-24 00:18:58 +02:00
GameConfigWidget.h Qt/GameConfigWidget: Complete overhaul 2019-01-26 00:41:22 +01:00
GeckoCodeWidget.cpp DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
GeckoCodeWidget.h Config/GeckoCodeWidget: Add option for alphabetical sorting 2019-06-22 19:54:13 +02:00
InfoWidget.cpp Merge pull request #7922 from JosJuice/verify-disc 2019-04-11 16:39:49 +02:00
InfoWidget.h Merge pull request #7922 from JosJuice/verify-disc 2019-04-11 16:39:49 +02:00
LogConfigWidget.cpp Qt/LogConfigWidget: Show log type short names 2019-05-11 16:05:22 +02:00
LogConfigWidget.h DolphinQt: Add debug log option in GUI for debug builds 2019-05-08 14:47:34 +02:00
LogWidget.cpp Qt/LogWidget: Make logging asynchronous 2019-02-08 13:21:21 +01:00
LogWidget.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
NewPatchDialog.cpp Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more. 2019-07-24 00:18:58 +02:00
NewPatchDialog.h Reformat repo to clang-format 7.0 rules 2019-05-06 18:48:04 +00:00
PatchesWidget.cpp Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more. 2019-07-24 00:18:58 +02:00
PatchesWidget.h DolphinQt/PatchesWidget: Remove unused private member variable m_game 2018-07-06 19:58:51 -04:00
PropertiesDialog.cpp DiscIO: Add functions CreateDisc and CreateWAD 2019-07-18 22:29:04 +02:00
PropertiesDialog.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
SettingsWindow.cpp DolphinQt/MainWindow: Replace includes with forward declarations 2018-07-15 18:46:26 -04:00
SettingsWindow.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
VerifyWidget.cpp Merge pull request #8005 from JosJuice/issue-11679 2019-04-22 14:39:56 +02:00
VerifyWidget.h VolumeVerifier: Calculate CRC32/MD5/SHA-1 2019-04-09 14:18:46 +02:00