[Xfce4-commits] r23868 - xarchiver/branches/xarchiver-psybsd/src
Stephan Arts
stephan at xfce.org
Tue Nov 14 12:23:11 CET 2006
Author: stephan
Date: 2006-11-14 11:23:10 +0000 (Tue, 14 Nov 2006)
New Revision: 23868
Modified:
xarchiver/branches/xarchiver-psybsd/src/archive_store.c
xarchiver/branches/xarchiver-psybsd/src/main_window.c
xarchiver/branches/xarchiver-psybsd/src/notebook.c
Log:
Changed stuff
Modified: xarchiver/branches/xarchiver-psybsd/src/archive_store.c
===================================================================
--- xarchiver/branches/xarchiver-psybsd/src/archive_store.c 2006-11-14 11:18:00 UTC (rev 23867)
+++ xarchiver/branches/xarchiver-psybsd/src/archive_store.c 2006-11-14 11:23:10 UTC (rev 23868)
@@ -1143,7 +1143,6 @@
}
g_signal_emit(store, xa_archive_store_signals[XA_ARCHIVE_STORE_SIGNAL_NEW_ARCHIVE], 0,NULL);
- g_signal_emit(store, xa_archive_store_signals[XA_ARCHIVE_STORE_SIGNAL_PWD_CHANGED], 0,NULL);
}
gchar *
Modified: xarchiver/branches/xarchiver-psybsd/src/main_window.c
===================================================================
--- xarchiver/branches/xarchiver-psybsd/src/main_window.c 2006-11-14 11:18:00 UTC (rev 23867)
+++ xarchiver/branches/xarchiver-psybsd/src/main_window.c 2006-11-14 11:23:10 UTC (rev 23868)
@@ -644,7 +644,7 @@
}
- gtk_window_set_title(GTK_WINDOW(window), lxa_archive_get_filename(lp_archive));
+ gtk_window_set_title(GTK_WINDOW(window), g_strconcat(PACKAGE_NAME, " - ", lxa_archive_get_filename(lp_archive), NULL));
}
static void
Modified: xarchiver/branches/xarchiver-psybsd/src/notebook.c
===================================================================
--- xarchiver/branches/xarchiver-psybsd/src/notebook.c 2006-11-14 11:18:00 UTC (rev 23867)
+++ xarchiver/branches/xarchiver-psybsd/src/notebook.c 2006-11-14 11:23:10 UTC (rev 23868)
@@ -239,7 +239,7 @@
GtkWidget *tree_view = gtk_tree_view_new();
gtk_tree_view_set_enable_search(GTK_TREE_VIEW(tree_view), TRUE);
- GtkTreeModel *tree_model = xa_archive_store_new(NULL, notebook->props._show_icons, notebook->props._up_dir, notebook->icon_theme);
+ GtkTreeModel *tree_model = xa_archive_store_new(archive, notebook->props._show_icons, notebook->props._up_dir, notebook->icon_theme);
gtk_box_pack_start(GTK_BOX(lbl_hbox), archive_image, FALSE, FALSE, 3);
gtk_box_pack_start(GTK_BOX(lbl_hbox), label, FALSE, FALSE, 0);
@@ -421,7 +421,7 @@
GtkWidget *treeview = gtk_bin_get_child(GTK_BIN(scrolledwindow));
GtkTreeModel *store = gtk_tree_view_get_model(GTK_TREE_VIEW(treeview));
- //xa_archive_store_set_archive(XA_ARCHIVE_STORE(store), archive);
+ xa_archive_store_set_archive(XA_ARCHIVE_STORE(store), archive);
xa_archive_store_set_support(XA_ARCHIVE_STORE(store), support);
g_signal_connect(G_OBJECT(archive), "lxa_status_changed", G_CALLBACK(cb_notebook_archive_status_changed), notebook);
More information about the Xfce4-commits
mailing list