From 113c75cd4088f15919e0c53b2adf11890c0a667e Mon Sep 17 00:00:00 2001 From: zeromus Date: Fri, 30 May 2008 06:18:14 +0000 Subject: [PATCH] mehhh im tired. no time for copy/paste. just a stub and then i sleep --- src/drivers/win/tasedit.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) 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;