https://bugs.kde.org/show_bug.cgi?id=365312

--- Comment #6 from Rex Dieter <rdie...@gmail.com> ---
Appears to be a hardcoded limit? near:

https://cgit.kde.org/kwordquiz.git/tree/src/kwordquiz.cpp#n495

void KWordQuizApp::initDocument()
{
  m_doc = new KEduVocDocument(this);
  m_doc->setGenerator(QStringLiteral("kwordquiz %1").arg(KWQ_VERSION));
  ///@todo New kvtml documents have a locale setting which should contain the
language they are written in.
  /* it would be nice to support that somehow. get hot new stuff for KHangman
and KAnagram already uses this. */
  m_doc->appendIdentifier();
  m_doc->identifier(0).setName(i18n("Column 1"));
  // m_doc->identifier(0).setLocale("en");
  m_doc->appendIdentifier();
  m_doc->identifier(1).setName(i18n("Column 2"));
  // m_doc->identifier(1).setLocale("en");

  for (int i=0; i<20; i++)
  {
    m_doc->lesson()->appendEntry(new KEduVocExpression());
  }
}

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to