gplugin/gplugin

clean up some warnings
develop
2015-02-28, Gary Kramlich
87071fc34287
Parents 4668195be9e7
Children e27afe56fcbe
clean up some warnings
--- a/gplugin-gtk/gplugin-gtk-plugin-info.c Sat Feb 28 20:46:47 2015 -0600
+++ b/gplugin-gtk/gplugin-gtk-plugin-info.c Sat Feb 28 20:54:46 2015 -0600
@@ -139,7 +139,8 @@
for(i = 0; authors[i]; i++) {
widget = gtk_label_new(authors[i]);
- gtk_misc_set_alignment(GTK_MISC(widget), 0.0f, 0.0f);
+ gtk_widget_set_halign(widget, GTK_ALIGN_START);
+ gtk_widget_set_valign(widget, GTK_ALIGN_START);
gtk_grid_attach(GTK_GRID(authors_grid), widget, 0, i, 1, 1);
gtk_widget_show(widget);
}