Changeset 1594 for trunk/dll/assoc.c


Ignore:
Timestamp:
Jul 4, 2011, 4:33:02 AM (14 years ago)
Author:
Gregg Young
Message:

Fixed failure to save associations on reordering.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/assoc.c

    r1544 r1594  
    2626  01 May 10 GKY Add ENVIRONMENT_SIZE variable to standardize this size everywhere.
    2727  01 May 10 GKY Changes to move environment storage to INI file
     28  03 Jul 11 GKY Fixed failure to save associations after reordering item to the top or bottom.
    2829
    2930**************************************************************************************/
     
    709710            asshead->prev = info;
    710711            asshead = info;
    711             WinSendMsg(hwnd, UM_UNDO, MPVOID, MPVOID);
     712            WinSendMsg(hwnd, UM_UNDO, MPVOID, MPVOID);
     713            save_associations();
    712714          }
    713715        }
     
    735737            asstail->next = info;
    736738            asstail = info;
    737             WinSendMsg(hwnd, UM_UNDO, MPVOID, MPVOID);
     739            WinSendMsg(hwnd, UM_UNDO, MPVOID, MPVOID);
     740            save_associations();
    738741          }
    739742        }
Note: See TracChangeset for help on using the changeset viewer.