Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/src/butspace.c')
-rw-r--r--source/blender/src/butspace.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/butspace.c b/source/blender/src/butspace.c
index b2e0c95e9e9..b23eabd118e 100644
--- a/source/blender/src/butspace.c
+++ b/source/blender/src/butspace.c
@@ -132,7 +132,7 @@ void test_obpoin_but(char *name, ID **idpp)
ID *id;
if(idpp == (ID **)&(emptytex.object)) {
- error("You must add a Texture first!");
+ error("You must add a texture first");
*idpp= 0;
return;
}
@@ -153,7 +153,7 @@ void test_obcurpoin_but(char *name, ID **idpp)
ID *id;
if(idpp == (ID **)&(emptytex.object)) {
- error("You must add a Texture first!");
+ error("You must add a texture first");
*idpp= 0;
return;
}
@@ -162,7 +162,7 @@ void test_obcurpoin_but(char *name, ID **idpp)
while(id) {
if( strcmp(name, id->name+2)==0 ) {
if (((Object *)id)->type != OB_CURVE) {
- error ("Bevel object must be a Curve.");
+ error ("Bevel object must be a curve");
break;
}
*idpp= id;