* @brief Echoes sent data to the console (legacy overload for device 0). */
| 830 | * @brief Echoes sent data to the console (legacy overload for device 0). |
| 831 | */ |
| 832 | void Console::Handler::displaySentData(QByteArrayView data) |
| 833 | { |
| 834 | if (echo()) |
| 835 | displaySentData(m_currentDeviceId >= 0 ? m_currentDeviceId : -1, data); |
| 836 | } |
| 837 | |
| 838 | /** |
| 839 | * @brief Echoes sent data to a specific device's console buffer. |