summaryrefslogtreecommitdiffstats
path: root/pokemodr/PokeModrUI.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-01-25 02:21:09 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-01-25 02:21:09 +0000
commit081bd53cf22ca40a6e436bc46eb62ad469909d6f (patch)
tree2b20a84df93e418ab0261231cf4b993ec57b2ca2 /pokemodr/PokeModrUI.cpp
parent095c93a62b0be0893063748d67051e35810a7f48 (diff)
downloadsigen-081bd53cf22ca40a6e436bc46eb62ad469909d6f.tar.gz
sigen-081bd53cf22ca40a6e436bc46eb62ad469909d6f.tar.xz
sigen-081bd53cf22ca40a6e436bc46eb62ad469909d6f.zip
[FIX] Frac returns a double (not an unsigned typcast to double, making 0 all the time)
[FIX] maxDV now works on 0 and 1 rather than 16 and 32 [FIX] Stuff ignored (due to other options) can't throw Exceptions in Rules anymore [FIX] UI logic fixed git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@45 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemodr/PokeModrUI.cpp')
-rw-r--r--pokemodr/PokeModrUI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/pokemodr/PokeModrUI.cpp b/pokemodr/PokeModrUI.cpp
index dc14ac51..3115d2d3 100644
--- a/pokemodr/PokeModrUI.cpp
+++ b/pokemodr/PokeModrUI.cpp
@@ -51,9 +51,9 @@ PokeModrUI::PokeModrUI(KConfigGroup cfg, KConfigGroup history, QWidget* parent)
try
{
Pokemod foo;
- foo.newTime();
- formPanel->setViewport(new TimeUI(&foo.getTime(0), formPanel));
-// formPanel->setViewport(new RulesUI(&foo.getRules(), formPanel));
+// foo.newTime();
+// formPanel->setViewport(new TimeUI(&foo.getTime(0), formPanel));
+ formPanel->setViewport(new RulesUI(&foo.getRules(), formPanel));
}
catch (Exception& e)
{