Mercurial > audlegacy
changeset 2133:d6c33d953f95 trunk
[svn] - while building the jump to file list, disassociate the GtkListStore
from the GtkTreeView widget which displays the JTF list.
author | nenolod |
---|---|
date | Fri, 15 Dec 2006 20:20:46 -0800 |
parents | aec6570f056f |
children | 1cc6ae153b67 |
files | ChangeLog audacious/mainwin.c |
diffstat | 2 files changed, 38 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri Dec 15 18:11:42 2006 -0800 +++ b/ChangeLog Fri Dec 15 20:20:46 2006 -0800 @@ -1,3 +1,38 @@ +2006-12-16 02:11:42 +0000 William Pitcock <nenolod@nenolod.net> + revision [3269] + - run update-po + - update welsh translation (419 messages translated, 100% translation coverage) + + trunk/po/audacious.pot | 621 ++++++++++++++++++++++++-------------------- + trunk/po/br.po | 643 ++++++++++++++++++++++++---------------------- + trunk/po/cs.po | 648 ++++++++++++++++++++++++---------------------- + trunk/po/cy.po | 680 +++++++++++++++++++++++++------------------------ + trunk/po/de.po | 657 +++++++++++++++++++++++++---------------------- + trunk/po/el.po | 657 +++++++++++++++++++++++++---------------------- + trunk/po/es.po | 657 +++++++++++++++++++++++++---------------------- + trunk/po/fi.po | 647 ++++++++++++++++++++++++---------------------- + trunk/po/fr.po | 628 ++++++++++++++++++++++++--------------------- + trunk/po/hi.po | 644 ++++++++++++++++++++++++---------------------- + trunk/po/hu.po | 643 +++++++++++++++++++++++++--------------------- + trunk/po/it.po | 647 ++++++++++++++++++++++++---------------------- + trunk/po/ja.po | 655 +++++++++++++++++++++++++---------------------- + trunk/po/ka.po | 644 ++++++++++++++++++++++++---------------------- + trunk/po/ko.po | 647 ++++++++++++++++++++++++---------------------- + trunk/po/lt.po | 644 ++++++++++++++++++++++++---------------------- + trunk/po/mk.po | 647 ++++++++++++++++++++++++---------------------- + trunk/po/nl.po | 643 +++++++++++++++++++++++++--------------------- + trunk/po/pl.po | 662 +++++++++++++++++++++++++---------------------- + trunk/po/pt_BR.po | 647 ++++++++++++++++++++++++---------------------- + trunk/po/ro.po | 639 ++++++++++++++++++++++++---------------------- + trunk/po/ru.po | 643 +++++++++++++++++++++++++--------------------- + trunk/po/sk.po | 647 ++++++++++++++++++++++++---------------------- + trunk/po/sv.po | 643 ++++++++++++++++++++++++---------------------- + trunk/po/uk.po | 648 ++++++++++++++++++++++++---------------------- + trunk/po/zh_CN.po | 641 ++++++++++++++++++++++++---------------------- + trunk/po/zh_TW.po | 644 ++++++++++++++++++++++++---------------------- + 27 files changed, 9342 insertions(+), 8124 deletions(-) + + 2006-12-16 00:04:22 +0000 Giacomo Lozito <james@develia.org> revision [3267] regex-powered jump to file - should be considerably faster than the old one
--- a/audacious/mainwin.c Fri Dec 15 18:11:42 2006 -0800 +++ b/audacious/mainwin.c Fri Dec 15 20:20:46 2006 -0800 @@ -1961,6 +1961,7 @@ * (row-selected will still eventually arrive once) */ store = GTK_LIST_STORE(gtk_tree_view_get_model(treeview)); gtk_list_store_clear(store); + gtk_tree_view_set_model(treeview, NULL); PLAYLIST_LOCK(); @@ -2014,6 +2015,8 @@ PLAYLIST_UNLOCK(); + gtk_tree_view_set_model(treeview, GTK_TREE_MODEL(store)); + if ( regex_list != NULL ) { regex_list_tmp = regex_list;