Example #1
0
void
gtr_message_go_to_next_fuzzy_or_untranslated (GtkAction * action,
        GtrWindow * window)
{
    GtrTab *current;

    current = gtr_window_get_active_tab (window);
    gtr_tab_go_to_next_fuzzy_or_untrans (current);
}
Example #2
0
void
gtr_message_go_to_next_fuzzy_or_untranslated (GtkAction * action,
                                              GtrWindow * window)
{
  GtrTab *current;
  GtrPo *po;

  current = gtr_window_get_active_tab (window);
  po = gtr_tab_get_po (current);
  if (gtr_tab_go_to_next_fuzzy_or_untrans (current))
    _gtr_window_set_sensitive_according_to_message (window, po);
}