From 6c5ba0ff0a4301b932c70aee6b4c87b2092d8bff Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Fri, 15 Nov 2013 14:43:47 +0000 Subject: making lyrics node --- rotord/src/nodes_drawing.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'rotord/src/nodes_drawing.h') diff --git a/rotord/src/nodes_drawing.h b/rotord/src/nodes_drawing.h index 84c9122..c2d79e6 100644 --- a/rotord/src/nodes_drawing.h +++ b/rotord/src/nodes_drawing.h @@ -111,19 +111,19 @@ namespace Rotor { } private: }; - class Lyrics_text: public Text_base { + class Lyrics: public Text_base { public: - Lyrics_text(){ + Lyrics(){ title="Lyrics text"; description="Draws lyrics text"; create_attribute("lyrics","Lyrics to draw","Lyrics","hello, world!"); NODEID="ac4318b8-4de9-11e3-b2eb-74d02b29f6a6"; }; - Lyrics_text(map &settings):Lyrics_text() { + Lyrics(map &settings):Lyrics() { base_settings(settings); }; - ~Lyrics_text(){}; - Lyrics_text* clone(map &_settings) { return new Lyrics_text(_settings);}; + ~Lyrics(){}; + Lyrics* clone(map &_settings) { return new Lyrics(_settings);}; string select_text(const Frame_spec &frame){ return "Hello, world!"; } -- cgit v1.2.3