use 'const char *' by default with RNA functions except when the value is flagged as PROP_THICK_WRAP.

Also use const char in many other parts of blenders code.

Currently this gives warnings for setting operator id, label and description since these are an exception and allocated beforehand.
This commit is contained in:
2010-11-17 09:45:45 +00:00
parent acc883da83
commit 51dcbdde03
105 changed files with 374 additions and 362 deletions

View File

@@ -172,7 +172,7 @@ void free_text(Text *text)
#endif
}
Text *add_empty_text(char *name)
Text *add_empty_text(const char *name)
{
Main *bmain= G.main;
Text *ta;
@@ -325,7 +325,7 @@ int reopen_text(Text *text)
return 1;
}
Text *add_text(char *file, const char *relpath)
Text *add_text(const char *file, const char *relpath)
{
Main *bmain= G.main;
FILE *fp;
@@ -559,7 +559,7 @@ void clear_text(Text *text) /* called directly from rna */
txt_make_dirty(text);
}
void write_text(Text *text, char *str) /* called directly from rna */
void write_text(Text *text, const char *str) /* called directly from rna */
{
int oldstate;