summaryrefslogtreecommitdiff
path: root/rotord/src/nodes_drawing.h
diff options
context:
space:
mode:
Diffstat (limited to 'rotord/src/nodes_drawing.h')
-rw-r--r--rotord/src/nodes_drawing.h10
1 files changed, 5 insertions, 5 deletions
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<string,string> &settings):Lyrics_text() {
+ Lyrics(map<string,string> &settings):Lyrics() {
base_settings(settings);
};
- ~Lyrics_text(){};
- Lyrics_text* clone(map<string,string> &_settings) { return new Lyrics_text(_settings);};
+ ~Lyrics(){};
+ Lyrics* clone(map<string,string> &_settings) { return new Lyrics(_settings);};
string select_text(const Frame_spec &frame){
return "Hello, world!";
}