dolphin/Source/Core/DolphinQt2/Debugger
Lioncash 6d0cab3743 DolphinQt2/MemoryWidget: Use QString's toUtf8() where applicable instead of toStdString()
Avoids needing to iterate and append the characters in one case. This also
alters the function to not need to construct a temporary std::string
(QString's toUtf8() is sufficient, as QByteArray exposes iterators).

toStdString() is equivalent to retrieving the QString's underlying
QByteArray via calling QString's .toUtf8 member function and then
calling .toStdString() on the result of it (discarding the QByteArray
afterwords), so this just trims off an unnecessary step in the process.

This is also somewhat more indicative of the conversions going on:
toStdString() converts the underlying character sequence of a
QString to UTF-8, not strict ASCII, so we're really using a superset of
ASCII.
2018-05-10 22:10:45 -04:00
..
BreakpointWidget.cpp Qt: Make toolbar more dynamic 2018-04-20 22:44:49 +02:00
BreakpointWidget.h Qt: Use new debugger icons 2018-04-13 20:40:41 +02:00
CodeViewWidget.cpp Qt/Debugger: Change CodeView background colors to bright ones 2018-04-28 16:53:04 +09:00
CodeViewWidget.h Qt/Debugger: Implement "Code" widget 2018-02-28 19:47:56 +01:00
CodeWidget.cpp Qt: Make toolbar more dynamic 2018-04-20 22:44:49 +02:00
CodeWidget.h Qt/Debugger: Implement "Memory" widget 2018-04-04 13:43:30 +02:00
MemoryViewWidget.cpp Qt: Use HostRead for float and double 2018-04-23 00:46:42 +09:00
MemoryViewWidget.h Qt/Debugger: Implement "Memory" widget 2018-04-04 13:43:30 +02:00
MemoryWidget.cpp DolphinQt2/MemoryWidget: Use QString's toUtf8() where applicable instead of toStdString() 2018-05-10 22:10:45 -04:00
MemoryWidget.h Qt/Debugger: Implement "Memory" widget 2018-04-04 13:43:30 +02:00
NewBreakpointDialog.cpp Qt/NewBreakpointDialog: Fix radio button weirdness 2018-01-31 19:28:44 +01:00
NewBreakpointDialog.h
RegisterColumn.cpp Reformat all the things! 2018-04-12 21:28:39 +02:00
RegisterColumn.h Use double instead of float for FPRs 2018-01-13 19:33:11 +09:00
RegisterWidget.cpp PowerPC: Make the PowerPCState's fpscr member variable a UReg_FPSCR instance 2018-05-06 18:46:52 -04:00
RegisterWidget.h Fix 64bit registers that are not displayed correctly 2018-01-13 16:21:32 +09:00
WatchWidget.cpp DebugInterface: Watches methods added 2018-04-28 17:46:51 +04:00
WatchWidget.h Qt: Use new debugger icons 2018-04-13 20:40:41 +02:00