Jean-Marc Lasgouttes schreef:
Le 12/06/2009 18:11, John McCabe-Dansted a écrit :
FYI, I wrote a script to send LyX thousands of random key presses and
collect the crash reports. (LyX 1.6.4svn, Ubuntu 9.04 32bit, upgraded
to Qt 4.5.1)
In an hour or so I've got three unique crash reports [1].
Do these look like they are useful? (or could be made useful)
This looks like a very good idea. The first one, for example, points to
void GuiCommandBuffer::down()
{
string const input = fromqstr(edit_->text());
string const h = historyDown();
if (!h.empty())
edit_->setText(toqstr(h));
downPB->setEnabled(history_pos_ != history_.end()-1); // <=== HERE
upPB->setEnabled(history_pos_ != history_.begin());
}
This happens when the history is empty. I fixed it in trunk.
Sorry.. (from the land of aussie.lyx.org)
Vincent
JMarc