| 735 gpointer key, value; |
735 gpointer key, value; |
| 736 |
736 |
| 737 GTK_APPLICATION_CLASS(pidgin_application_parent_class)->window_added(application, |
737 GTK_APPLICATION_CLASS(pidgin_application_parent_class)->window_added(application, |
| 738 window); |
738 window); |
| 739 |
739 |
| |
740 if(strstr(VERSION, "-devel")) { |
| |
741 gtk_widget_add_css_class(GTK_WIDGET(window), "devel"); |
| |
742 } |
| |
743 |
| 740 g_hash_table_iter_init(&iter, pidgin_application->action_groups); |
744 g_hash_table_iter_init(&iter, pidgin_application->action_groups); |
| 741 while(g_hash_table_iter_next(&iter, &key, &value)) { |
745 while(g_hash_table_iter_next(&iter, &key, &value)) { |
| 742 GActionGroup *action_group = value; |
746 GActionGroup *action_group = value; |
| 743 gchar *prefix = key; |
747 gchar *prefix = key; |
| 744 |
748 |