blob: aecb171ed0e5fcae74385977c4d30921ff0801de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class CanvasText < TQt::CanvasText
CANVAS_TEXT = 1100
attr :index
def initialize(index, *k)
super(*k)
@index = index
end
def rtti() return CANVAS_TEXT end
end
|