fix to spelling errors reported by lintian

This commit is contained in:
Jaromil
2011-02-25 21:27:47 +01:00
parent 8ff699e40b
commit 0d685f60a5
8 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ bool AudioInput::init() {
if(!audio) return(false);
act("audio initialization succesful");
act("audio initialization successful");
initialized = true;
return true;
+3 -3
View File
@@ -513,7 +513,7 @@ int console_open_layer(Context *env, char *cmd) {
// l->fps=env->fps_speed;
len = env->screens.selected()->layers.len();
notice("layer succesfully created, now you have %i layers",len);
notice("layer successfully created, now you have %i layers",len);
return len;
}
error("layer creation aborted");
@@ -544,7 +544,7 @@ int console_open_text_layer(Context *env, char *cmd) {
env->screen->add_layer(txt);
txt->active=true;
notice("layer succesfully created with text: %s",cmd);
notice("layer successfully created with text: %s",cmd);
return env->screens.selected()->layers.len();
}
#endif
@@ -775,6 +775,6 @@ int console_generator_selection(Context *env, char *cmd) {
env->screen->add_layer(tmp);
tmp->active=true;
notice("generator %s succesfully created", tmp->name);
notice("generator %s successfully created", tmp->name);
return 1;
}
+2 -2
View File
@@ -193,7 +193,7 @@ bool Context::add_screen(ViewPort *scr) {
screens.sel(0);
scr->sel(true);
screen = screens.begin();
func("screen %s succesfully added", scr->name);
func("screen %s successfully added", scr->name);
act("screen %s now on top",screen->name);
return(true);
@@ -744,7 +744,7 @@ Layer *Context::open(char *file, int w, int h) {
if(!nlayer)
error("can't create a layer with %s",file);
else
func("create_layer succesful, returns %p",nlayer);
func("create_layer successful, returns %p",nlayer);
return nlayer;
}
+1 -1
View File
@@ -249,7 +249,7 @@ Layer *create_layer(Context *env, char *file) {
if(!nlayer)
error("can't create a layer with %s",file);
else
func("create_layer succesful, returns %p",nlayer);
func("create_layer successful, returns %p",nlayer);
return nlayer;
}
+1 -1
View File
@@ -73,7 +73,7 @@
bool open(char *file) called to open MyLayer's source
returns false if is not accessible
bool init(Context *scr) if the open was succesful, call this and
bool init(Context *scr) if the open was successful, call this and
the Layer will enter the chain
bool feed() this function is executed by the Context when
+1 -1
View File
@@ -184,7 +184,7 @@ int rtc_open() {
perror("rtc ioctl");
return 0;
}
notice("realtime clock succesfully initialized");
notice("realtime clock successfully initialized");
return 1;
}
/* tick returns 0 if 1 second didn't passed since last tick,
+1 -1
View File
@@ -158,7 +158,7 @@ bool OggTheoraEncoder::init (ViewPort *scr) {
enc_v = malloc((screen->geo.w * screen->geo.h) /2);
enc_yuyv = (uint8_t*)malloc( screen->geo.bytesize );
act("initialization succesful");
act("initialization successful");
initialized = true;
return true;
+1 -1
View File
@@ -252,7 +252,7 @@ Theora11Encoder::init(Context *_env) {
// init complete
// ----
act("initialization succesful");
act("initialization successful");
initialized = true;
return true;