| 912 | } |
| 913 | |
| 914 | LRESULT CSaveModifiedItemsDialog::OnHeaderTrack(int /*idCtrl*/, LPNMHDR /*pnmh*/, BOOL& bHandled) |
| 915 | { |
| 916 | // NOTE: See http://support.microsoft.com/?kbid=183258 |
| 917 | // "INFO: HDN_TRACK Notifications and Full Window Drag Style" |
| 918 | // We only get this if the HDS_FULLDRAG style is not set |
| 919 | // (in which case, we won't get HDN_ITEMCHANGING). |
| 920 | |
| 921 | // If HDS_FULLDRAG is NOT set, the list view won't show the contents |
| 922 | // as the user is dragging the divider to resize a column. |
| 923 | // So we won't update the column widths as they drag, |
| 924 | // but will in "End Track" when they're done |
| 925 | |
| 926 | bHandled = FALSE; |
| 927 | return 0; |
| 928 | } |
| 929 | |
| 930 | LRESULT CSaveModifiedItemsDialog::OnHeaderEndTrack(int /*idCtrl*/, LPNMHDR pnmh, BOOL& bHandled) |
| 931 | { |
nothing calls this directly
no outgoing calls
no test coverage detected