mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12:00
remove redundant c_str -> string -> c_str conversions
This commit is contained in:
parent
8ac226ae69
commit
febe8624bf
7 changed files with 9 additions and 9 deletions
|
@ -862,7 +862,7 @@ void MainFrame::UpdateUI(wxCommandEvent& event)
|
|||
//send_exit.Enable(false);
|
||||
bool enable_commands = !is_stopped && Emu.GetCallbackManager().m_exit_callback.m_callbacks.GetCount();
|
||||
|
||||
send_open_menu.SetItemLabel(wxString::Format("Send %s system menu cmd", std::string(m_sys_menu_opened ? "close" : "open").c_str()));
|
||||
send_open_menu.SetItemLabel(wxString::Format("Send %s system menu cmd", (m_sys_menu_opened ? "close" : "open")));
|
||||
send_open_menu.Enable(enable_commands);
|
||||
send_exit.Enable(enable_commands);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue