mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-25 12:07:49 +02:00
Satisfy GCC -Wformat-security with TextUnformatted
This commit is contained in:
@ -193,19 +193,19 @@ private:
|
||||
ImGui::TableSetColumnIndex(0);
|
||||
ImGui::Text("Source");
|
||||
ImGui::TableSetColumnIndex(1);
|
||||
ImGui::Text("%s", _this->lsf.src.c_str());
|
||||
ImGui::TextUnformatted(_this->lsf.src.c_str());
|
||||
|
||||
ImGui::TableNextRow();
|
||||
ImGui::TableSetColumnIndex(0);
|
||||
ImGui::Text("Destination");
|
||||
ImGui::TableSetColumnIndex(1);
|
||||
ImGui::Text("%s", _this->lsf.dst.c_str());
|
||||
ImGui::TextUnformatted(_this->lsf.dst.c_str());
|
||||
|
||||
ImGui::TableNextRow();
|
||||
ImGui::TableSetColumnIndex(0);
|
||||
ImGui::Text("Data Type");
|
||||
ImGui::TableSetColumnIndex(1);
|
||||
ImGui::Text("%s", M17DataTypesTxt[_this->lsf.dataType]);
|
||||
ImGui::TextUnformatted(M17DataTypesTxt[_this->lsf.dataType]);
|
||||
|
||||
ImGui::TableNextRow();
|
||||
ImGui::TableSetColumnIndex(0);
|
||||
|
Reference in New Issue
Block a user