Merge branch 'master' of https://github.com/klamonte/jexer
[fanfix.git] / src / jexer / TLabel.java
index ad30035980ef1c4ae13fdd3cac0ac89a39eb43b8..fb00ac47599a5379127f12a41edc915d5b341f3c 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Jexer - Java Text User Interface
  *
  * License: LGPLv3 or later
@@ -108,7 +108,7 @@ public final class TLabel extends TWidget {
         CellAttributes background = getWindow().getBackground();
         color.setBackColor(background.getBackColor());
 
-        getScreen().putStrXY(0, 0, label, color);
+        getScreen().putStringXY(0, 0, label, color);
     }
 
 }