Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 629842
Collapse All | Expand All

(-)ogmrip-1.0.1/src/ogmrip-spell-dialog.c.orig (-2 / +2 lines)
Lines 315-328 Link Here
315
        enchant_dict_add_to_session (dialog->priv->dict, word, len);
315
        enchant_dict_add_to_session (dialog->priv->dict, word, len);
316
        break;
316
        break;
317
      case OGMRIP_SPELL_RESPONSE_ADD_WORD:
317
      case OGMRIP_SPELL_RESPONSE_ADD_WORD:
318
        enchant_dict_add_to_personal (dialog->priv->dict, word, len);
318
        enchant_dict_add (dialog->priv->dict, word, len);
319
        break;
319
        break;
320
      default:
320
      default:
321
        break;
321
        break;
322
    }
322
    }
323
323
324
    if (suggs && n_suggs)
324
    if (suggs && n_suggs)
325
      enchant_dict_free_suggestions (dialog->priv->dict, suggs);
325
      enchant_dict_free_string_list (dialog->priv->dict, suggs);
326
  }
326
  }
327
327
328
  return status;
328
  return status;

Return to bug 629842