code cleanup: BKE_ naming, also make bpy.data.images.load() always load a new image. (not use existing one)

This commit is contained in:
2012-05-05 14:52:04 +00:00
parent 299ff91ea1
commit 34b18fcbc1
30 changed files with 109 additions and 98 deletions

View File

@@ -37,13 +37,13 @@
static void rna_Text_clear(Text *text)
{
clear_text(text);
BKE_text_clear(text);
WM_main_add_notifier(NC_TEXT|NA_EDITED, text);
}
static void rna_Text_write(Text *text, const char *str)
{
write_text(text, str);
BKE_text_write(text, str);
WM_main_add_notifier(NC_TEXT|NA_EDITED, text);
}