dolphin/Source/Core/DolphinQt/NetPlay
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
..
ChunkedProgressDialog.cpp NetPlay: Add cancel button for chunked data transfers 2019-04-07 06:22:33 -04:00
ChunkedProgressDialog.h NetPlay: Add cancel button for chunked data transfers 2019-04-07 06:22:33 -04:00
GameListDialog.cpp
GameListDialog.h
MD5Dialog.cpp Qt/MD5Dialog: Make dialog modal 2019-03-16 18:54:15 +01:00
MD5Dialog.h
NetPlayBrowser.cpp Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more. 2019-07-24 00:18:58 +02:00
NetPlayBrowser.h Qt/NetPlayBrowser: Refresh session list asynchronously 2019-04-11 22:02:13 -04:00
NetPlayDialog.cpp Qt/NetPlayDialog: Change network mode options to radio buttons 2019-05-31 02:33:41 -04:00
NetPlayDialog.h Qt/NetPlayDialog: Change network mode options to radio buttons 2019-05-31 02:33:41 -04:00
NetPlaySetupDialog.cpp DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
NetPlaySetupDialog.h Qt/NetPlay: Integrate NetPlayIndex 2019-04-06 12:27:30 +02:00
PadMappingDialog.cpp Qt/PadMappingDialog: Improve layout 2019-03-16 15:12:20 +01:00
PadMappingDialog.h Core: Namespace NetPlay utilities under the NetPlay namespace 2018-07-06 19:53:23 -04:00