mehhh im tired. no time for copy/paste. just a stub and then i sleep
This commit is contained in:
parent
88669859ff
commit
113c75cd40
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue