| 174 | } |
| 175 | |
| 176 | LRESULT CProcessPropertiesDlg::OnCopy(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { |
| 177 | auto& cmd = m_px.GetCommandLine(); |
| 178 | if (!cmd.empty()) { |
| 179 | ClipboardHelper::CopyText(*this, cmd.c_str()); |
| 180 | } |
| 181 | return 0; |
| 182 | } |
nothing calls this directly
no test coverage detected