Fixed crash when selecting graph

This commit is contained in:
Kenneth van Ewijk
2014-10-22 22:53:23 +02:00
parent d7364183b1
commit 3e1107ceea
+6 -2
View File
@@ -1,4 +1,4 @@
package weerstation1;
public class Voorspellingen extends Grootheid{ public class Voorspellingen extends Grootheid{
private double barometer; private double barometer;
@@ -86,6 +86,10 @@ public class Voorspellingen extends Grootheid{
setCustom("Zware storm"); setCustom("Zware storm");
setCurrent(90); setCurrent(90);
} }
super.display(); }
public void displayGraph()
{
display();
} }
} }