On Mon, Aug 28, 2006 at 11:28:05PM -0400, Derek Atkins wrote: > Author: warlord > Date: 2006-08-28 23:28:04 -0400 (Mon, 28 Aug 2006) > New Revision: 14760 > Trac: http://svn.gnucash.org/trac/changeset/14760 > > Modified: > gnucash/branches/2.0/ > gnucash/branches/2.0/ChangeLog > gnucash/branches/2.0/src/gnome/gnc-plugin-page-account-tree.c > Log: > Maintain the account hierarchy when reparenting the descendants of a > deleted account. > > Merge from r14700. > > > > Property changes on: gnucash/branches/2.0 > ___________________________________________________________________ > Name: svk:merge > - d2ab10a8-8a95-4986-baff-8d511d9f15b2:/local/gnucash/branches/2.0:13187 > + d2ab10a8-8a95-4986-baff-8d511d9f15b2:/local/gnucash/branches/2.0:13188 > > Modified: gnucash/branches/2.0/ChangeLog > =================================================================== > --- gnucash/branches/2.0/ChangeLog 2006-08-29 03:27:53 UTC (rev 14759) > +++ gnucash/branches/2.0/ChangeLog 2006-08-29 03:28:04 UTC (rev 14760) > @@ -1,10 +1,8 @@ > -2006-08-19 David Hampton <[EMAIL PROTECTED]> > +2006-08-20 David Hampton <[EMAIL PROTECTED]> > > - * src/gnome/gnucash-desktop*: Update so that bug-buddy 2.16 will > - still allow you to file bugs against gnucash. > + * src/gnome/gnc-plugin-page-account-tree.c: Maintain the account > + hierarchy when reparenting the descendants of a deleted account. > > - * src/engine/Account.c: Add missing call to xaccAccountBeginEdit. > - > 2006-08-18 David Hampton <[EMAIL PROTECTED]> > > * src/gnome/gnucash-desktop*: Update so that bug-buddy 2.16 will >
Gah! ChangeLog-mangling-alert! WOONKA! WOOKNA! -chris > Modified: gnucash/branches/2.0/src/gnome/gnc-plugin-page-account-tree.c > =================================================================== > --- gnucash/branches/2.0/src/gnome/gnc-plugin-page-account-tree.c > 2006-08-29 03:27:53 UTC (rev 14759) > +++ gnucash/branches/2.0/src/gnome/gnc-plugin-page-account-tree.c > 2006-08-29 03:28:04 UTC (rev 14760) > @@ -1095,7 +1095,7 @@ > GList *acct_list, *ptr; > > xaccAccountBeginEdit (daa); > - acct_list = xaccGroupGetSubAccounts(children); > + acct_list = g_list_copy(xaccGroupGetAccountList(children)); > for (ptr = acct_list; ptr; ptr = g_list_next(ptr)) > xaccAccountInsertSubAccount (daa, ptr->data); > g_list_free(acct_list); > > _______________________________________________ > gnucash-changes mailing list > [EMAIL PROTECTED] > https://lists.gnucash.org/mailman/listinfo/gnucash-changes _______________________________________________ gnucash-devel mailing list [email protected] https://lists.gnucash.org/mailman/listinfo/gnucash-devel
