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();
|
RedrawList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//copies the current selection to the clipboard
|
||||||
|
static void Copy()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
//The subclass wndproc for the listview header
|
//The subclass wndproc for the listview header
|
||||||
static LRESULT APIENTRY HeaderWndProc(HWND hWnd,UINT msg,WPARAM wParam,LPARAM lParam)
|
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();
|
Export();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ACCEL_CTRL_C:
|
||||||
|
Copy();
|
||||||
|
break;
|
||||||
|
|
||||||
case ACCEL_CTRL_W:
|
case ACCEL_CTRL_W:
|
||||||
KillTasEdit();
|
KillTasEdit();
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue