mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-12 03:07:11 +01:00
Satisfy GCC -Wformat-security with string literals
This commit is contained in:
parent
75da59833a
commit
2c3b603b88
@ -43,10 +43,10 @@ namespace module_manager_menu {
|
|||||||
ImGui::TableNextRow();
|
ImGui::TableNextRow();
|
||||||
|
|
||||||
ImGui::TableSetColumnIndex(0);
|
ImGui::TableSetColumnIndex(0);
|
||||||
ImGui::Text(name.c_str());
|
ImGui::Text("%s", name.c_str());
|
||||||
|
|
||||||
ImGui::TableSetColumnIndex(1);
|
ImGui::TableSetColumnIndex(1);
|
||||||
ImGui::Text(inst.module.info->name);
|
ImGui::Text("%s", inst.module.info->name);
|
||||||
|
|
||||||
ImGui::TableSetColumnIndex(2);
|
ImGui::TableSetColumnIndex(2);
|
||||||
ImVec2 origPos = ImGui::GetCursorPos();
|
ImVec2 origPos = ImGui::GetCursorPos();
|
||||||
@ -69,7 +69,7 @@ namespace module_manager_menu {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ImGui::GenericDialog("module_mgr_error_", errorOpen, GENERIC_DIALOG_BUTTONS_OK, []() {
|
ImGui::GenericDialog("module_mgr_error_", errorOpen, GENERIC_DIALOG_BUTTONS_OK, []() {
|
||||||
ImGui::Text(errorMessage.c_str());
|
ImGui::Text("%s", errorMessage.c_str());
|
||||||
});
|
});
|
||||||
|
|
||||||
// Add module row with slightly different settings
|
// Add module row with slightly different settings
|
||||||
|
@ -129,7 +129,7 @@ namespace vfo_color_menu {
|
|||||||
core::configManager.release(true);
|
core::configManager.release(true);
|
||||||
}
|
}
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::Text(name.c_str());
|
ImGui::Text("%s", name.c_str());
|
||||||
}
|
}
|
||||||
ImGui::EndTable();
|
ImGui::EndTable();
|
||||||
}
|
}
|
||||||
|
@ -49,7 +49,7 @@ namespace ImGui {
|
|||||||
void LeftLabel(const char* text) {
|
void LeftLabel(const char* text) {
|
||||||
float vpos = ImGui::GetCursorPosY();
|
float vpos = ImGui::GetCursorPosY();
|
||||||
ImGui::SetCursorPosY(vpos + GImGui->Style.FramePadding.y);
|
ImGui::SetCursorPosY(vpos + GImGui->Style.FramePadding.y);
|
||||||
ImGui::Text(text);
|
ImGui::Text("%s", text);
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::SetCursorPosY(vpos);
|
ImGui::SetCursorPosY(vpos);
|
||||||
}
|
}
|
||||||
|
@ -433,7 +433,7 @@ namespace ImGui {
|
|||||||
char buf[128];
|
char buf[128];
|
||||||
ImGui::BeginTooltip();
|
ImGui::BeginTooltip();
|
||||||
|
|
||||||
ImGui::Text(name.c_str());
|
ImGui::Text("%s", name.c_str());
|
||||||
|
|
||||||
if (ImGui::IsKeyDown(GLFW_KEY_LEFT_CONTROL) || ImGui::IsKeyDown(GLFW_KEY_RIGHT_CONTROL)) {
|
if (ImGui::IsKeyDown(GLFW_KEY_LEFT_CONTROL) || ImGui::IsKeyDown(GLFW_KEY_RIGHT_CONTROL)) {
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
|
@ -193,19 +193,19 @@ private:
|
|||||||
ImGui::TableSetColumnIndex(0);
|
ImGui::TableSetColumnIndex(0);
|
||||||
ImGui::Text("Source");
|
ImGui::Text("Source");
|
||||||
ImGui::TableSetColumnIndex(1);
|
ImGui::TableSetColumnIndex(1);
|
||||||
ImGui::Text(_this->lsf.src.c_str());
|
ImGui::Text("%s", _this->lsf.src.c_str());
|
||||||
|
|
||||||
ImGui::TableNextRow();
|
ImGui::TableNextRow();
|
||||||
ImGui::TableSetColumnIndex(0);
|
ImGui::TableSetColumnIndex(0);
|
||||||
ImGui::Text("Destination");
|
ImGui::Text("Destination");
|
||||||
ImGui::TableSetColumnIndex(1);
|
ImGui::TableSetColumnIndex(1);
|
||||||
ImGui::Text(_this->lsf.dst.c_str());
|
ImGui::Text("%s", _this->lsf.dst.c_str());
|
||||||
|
|
||||||
ImGui::TableNextRow();
|
ImGui::TableNextRow();
|
||||||
ImGui::TableSetColumnIndex(0);
|
ImGui::TableSetColumnIndex(0);
|
||||||
ImGui::Text("Data Type");
|
ImGui::Text("Data Type");
|
||||||
ImGui::TableSetColumnIndex(1);
|
ImGui::TableSetColumnIndex(1);
|
||||||
ImGui::Text(M17DataTypesTxt[_this->lsf.dataType]);
|
ImGui::Text("%s", M17DataTypesTxt[_this->lsf.dataType]);
|
||||||
|
|
||||||
ImGui::TableNextRow();
|
ImGui::TableNextRow();
|
||||||
ImGui::TableSetColumnIndex(0);
|
ImGui::TableSetColumnIndex(0);
|
||||||
|
@ -738,7 +738,7 @@ private:
|
|||||||
}
|
}
|
||||||
|
|
||||||
ImGui::BeginTooltip();
|
ImGui::BeginTooltip();
|
||||||
ImGui::Text(hoveredBookmarkName.c_str());
|
ImGui::Text("%s", hoveredBookmarkName.c_str());
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
ImGui::Text("List: %s", hoveredBookmark.listName.c_str());
|
ImGui::Text("List: %s", hoveredBookmark.listName.c_str());
|
||||||
ImGui::Text("Frequency: %s", utils::formatFreq(hoveredBookmark.bookmark.frequency).c_str());
|
ImGui::Text("Frequency: %s", utils::formatFreq(hoveredBookmark.bookmark.frequency).c_str());
|
||||||
|
Loading…
Reference in New Issue
Block a user