diff --git a/src/drivers/win/tasedit.cpp b/src/drivers/win/tasedit.cpp index 3c2e70f6..076ba2d8 100644 --- a/src/drivers/win/tasedit.cpp +++ b/src/drivers/win/tasedit.cpp @@ -201,6 +201,11 @@ static void ColumnSet(int column) RedrawList(); } +//copies the current selection to the clipboard +static void Copy() +{ +} + //The subclass wndproc for the listview header static LRESULT APIENTRY HeaderWndProc(HWND hWnd,UINT msg,WPARAM wParam,LPARAM lParam) { @@ -408,6 +413,10 @@ BOOL CALLBACK WndprocTasEdit(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPar Export(); break; + case ACCEL_CTRL_C: + Copy(); + break; + case ACCEL_CTRL_W: KillTasEdit(); break;