From b481ec92e49eeebf060802befb0d860760e45cd6 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 17 Dec 2012 20:16:37 +0000 Subject: Minor tweaks to some UI messages... --- build_files/scons/config/linux-config.py | 2 +- source/blender/editors/space_view3d/view3d_ops.c | 2 +- source/blender/modifiers/intern/MOD_uvwarp.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build_files/scons/config/linux-config.py b/build_files/scons/config/linux-config.py index 0185c2dd783..db3b369c5c4 100644 --- a/build_files/scons/config/linux-config.py +++ b/build_files/scons/config/linux-config.py @@ -197,7 +197,7 @@ WITH_BF_BOOST = False WITH_BF_STATICBOOST = False BF_BOOST = '/usr' BF_BOOST_INC = '${BF_BOOST}/include' -BF_BOOST_LIB = 'boost_date_time boost_filesystem boost_regex boost_system boost_thread' +BF_BOOST_LIB = 'boost_filesystem boost_regex boost_system boost_thread boost_date_time' BF_BOOST_LIB_STATIC = '${BF_BOOST_LIBPATH}/libboost_filesystem.a ${BF_BOOST_LIBPATH}/libboost_date_time.a ' + \ '${BF_BOOST_LIBPATH}/libboost_regex.a ${BF_BOOST_LIBPATH}/libboost_locale.a ${BF_BOOST_LIBPATH}/libboost_system.a' + \ '${BF_BOOST_LIBPATH}/libboost_thread.a' diff --git a/source/blender/editors/space_view3d/view3d_ops.c b/source/blender/editors/space_view3d/view3d_ops.c index ce05bbf7b0f..1334afee30e 100644 --- a/source/blender/editors/space_view3d/view3d_ops.c +++ b/source/blender/editors/space_view3d/view3d_ops.c @@ -111,7 +111,7 @@ static void VIEW3D_OT_pastebuffer(wmOperatorType *ot) /* identifiers */ ot->name = "Paste Selection from Buffer"; ot->idname = "VIEW3D_OT_pastebuffer"; - ot->description = "Contents of copybuffer gets pasted"; + ot->description = "Contents of copy buffer gets pasted"; /* api callbacks */ ot->invoke = WM_operator_confirm; diff --git a/source/blender/modifiers/intern/MOD_uvwarp.c b/source/blender/modifiers/intern/MOD_uvwarp.c index 5585a715131..249c3c89d5f 100644 --- a/source/blender/modifiers/intern/MOD_uvwarp.c +++ b/source/blender/modifiers/intern/MOD_uvwarp.c @@ -130,7 +130,7 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *ob, return dm; } else if (ELEM(NULL, umd->object_src, umd->object_dst)) { - modifier_setError(md, "from/to objects must be set"); + modifier_setError(md, "From/To objects must be set"); return dm; } -- cgit v1.2.3