diff options
author | 2020-01-23 04:03:35 +0100 | |
---|---|---|
committer | 2020-01-22 22:03:35 -0500 | |
commit | 7c3aea8928f90955b7b67e40c705c16d8543384f (patch) | |
tree | 4818711117f20ef52fbbcec6543aa970c3c4d519 /src/osd/modules/debugger/debugimgui.cpp | |
parent | d4bed5fce44ecf903e5170a8d4624a9edf7c14f3 (diff) |
fixed some clang-tidy warnings (nw) (#6197)
* fixed some bugprone-throw-keyword-missing clang-tidy warnings (nw)
* fixed some modernize-use-nullptr clang-tidy warnings (nw)
* fixed some readability-delete-null-pointer clang-tidy warnings (nw)
* fixed some performance-faster-string-find clang-tidy warnings (nw)
* fixed some performance-for-range-copy clang-tidy warnings (nw)
* fixed some readability-redundant-string-cstr clang-tidy warnings (nw)
Diffstat (limited to 'src/osd/modules/debugger/debugimgui.cpp')
-rw-r--r-- | src/osd/modules/debugger/debugimgui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osd/modules/debugger/debugimgui.cpp b/src/osd/modules/debugger/debugimgui.cpp index 487ad42ecc5..fde6882a69b 100644 --- a/src/osd/modules/debugger/debugimgui.cpp +++ b/src/osd/modules/debugger/debugimgui.cpp @@ -949,7 +949,7 @@ void debug_imgui::mount_image() case file_entry_type::DIRECTORY: { util::zippath_directory::ptr dir; - err = util::zippath_directory::open(m_selected_file->fullpath.c_str(), dir); + err = util::zippath_directory::open(m_selected_file->fullpath, dir); } if(err == osd_file::error::NONE) { @@ -958,7 +958,7 @@ void debug_imgui::mount_image() } break; case file_entry_type::FILE: - m_dialog_image->load(m_selected_file->fullpath.c_str()); + m_dialog_image->load(m_selected_file->fullpath); ImGui::CloseCurrentPopup(); break; } @@ -1106,7 +1106,7 @@ void debug_imgui::draw_mount_dialog(const char* label) { // render dialog //ImGui::SetNextWindowContentWidth(200.0f); - if(ImGui::BeginPopupModal(label,NULL,ImGuiWindowFlags_AlwaysAutoResize)) + if(ImGui::BeginPopupModal(label,nullptr,ImGuiWindowFlags_AlwaysAutoResize)) { if(m_filelist_refresh) refresh_filelist(); @@ -1157,7 +1157,7 @@ void debug_imgui::draw_create_dialog(const char* label) { // render dialog //ImGui::SetNextWindowContentWidth(200.0f); - if(ImGui::BeginPopupModal(label,NULL,ImGuiWindowFlags_AlwaysAutoResize)) + if(ImGui::BeginPopupModal(label,nullptr,ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::LabelText("##static1","Filename:"); ImGui::SameLine(); |