From 13c9a49673321fbcff0d81de287bb1e9afcabcf4 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 16 May 2008 02:20:13 +0000 Subject: [FIX] Matrix had an infinite loop [FIX] Matrix const-ness on operator== [FIX] Bug in Pokemod::clear() [FIX] Waiting for Qt bug fix for QTextEdit git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@139 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemodr/MoveUI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pokemodr/MoveUI.cpp') diff --git a/pokemodr/MoveUI.cpp b/pokemodr/MoveUI.cpp index 4109cb2d..8407792c 100644 --- a/pokemodr/MoveUI.cpp +++ b/pokemodr/MoveUI.cpp @@ -68,7 +68,8 @@ void MoveUI::setGui() varCanRandom->setChecked(static_cast(modified())->canRandom() ? Qt::Checked : Qt::Unchecked); varCanSnatch->setChecked(static_cast(modified())->canSnatch() ? Qt::Checked : Qt::Unchecked); varMakesSound->setChecked(static_cast(modified())->sound() ? Qt::Checked : Qt::Unchecked); - varDescription->setText(static_cast(modified())->description()); + // FIXME: Qt bug +// varDescription->setPlainText(static_cast(modified())->description()); } void MoveUI::apply() -- cgit