aboutsummaryrefslogtreecommitdiffstats
path: root/src/graphui/classes/jogamp/graph/ui
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-09-04 05:39:05 +0200
committerSven Gothel <[email protected]>2023-09-04 06:28:26 +0200
commit4ca9efd6759856f46eb0cedde28998bc2b68d2cb (patch)
treee3793bf608e2f71a1e1a76604f105e4e924f168e /src/graphui/classes/jogamp/graph/ui
parentc3bb3fb871a92a71e7a6b05897a3dd9b62842fc5 (diff)
GraphUI: Button/Label: Complete String -> CharSequence type change for text, rename Button set{Label->Text}(..), adjust demo/text code
Diffstat (limited to 'src/graphui/classes/jogamp/graph/ui')
-rw-r--r--src/graphui/classes/jogamp/graph/ui/shapes/Label0.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphui/classes/jogamp/graph/ui/shapes/Label0.java b/src/graphui/classes/jogamp/graph/ui/shapes/Label0.java
index 74dcb8491..3809c3a07 100644
--- a/src/graphui/classes/jogamp/graph/ui/shapes/Label0.java
+++ b/src/graphui/classes/jogamp/graph/ui/shapes/Label0.java
@@ -58,7 +58,7 @@ public class Label0 {
this.rgbaColor.set(v);
}
- public final void setText(final String text) {
+ public final void setText(final CharSequence text) {
this.text = text;
}