[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [41225] trunk/blender: Typo fixes for the typo fixes.

Thomas Dinges blender at dingto.org
Sun Oct 23 17:43:12 CEST 2011


Revision: 41225
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=41225
Author:   dingto
Date:     2011-10-23 15:43:12 +0000 (Sun, 23 Oct 2011)
Log Message:
-----------
Typo fixes for the typo fixes. :D

Modified Paths:
--------------
    trunk/blender/CMakeLists.txt
    trunk/blender/source/blender/editors/interface/interface_widgets.c
    trunk/blender/source/blender/editors/space_graph/space_graph.c
    trunk/blender/source/blender/editors/space_outliner/outliner_tools.c
    trunk/blender/source/blender/makesrna/intern/rna_action.c

Modified: trunk/blender/CMakeLists.txt
===================================================================
--- trunk/blender/CMakeLists.txt	2011-10-23 15:27:36 UTC (rev 41224)
+++ trunk/blender/CMakeLists.txt	2011-10-23 15:43:12 UTC (rev 41225)
@@ -137,7 +137,7 @@
 option(WITH_HEADLESS      "Build without graphical support (renderfarm, server mode only)" OFF)
 mark_as_advanced(WITH_HEADLESS)
 
-option(WITH_AUDASPACE    "Build with blenders audio library (only disable if you know what your doing!)" ON)
+option(WITH_AUDASPACE    "Build with blenders audio library (only disable if you know what you're doing!)" ON)
 mark_as_advanced(WITH_AUDASPACE)
 
 

Modified: trunk/blender/source/blender/editors/interface/interface_widgets.c
===================================================================
--- trunk/blender/source/blender/editors/interface/interface_widgets.c	2011-10-23 15:27:36 UTC (rev 41224)
+++ trunk/blender/source/blender/editors/interface/interface_widgets.c	2011-10-23 15:43:12 UTC (rev 41225)
@@ -1787,7 +1787,7 @@
 	
 	/* exception: if 'lock' is set
 	 * lock the value of the color wheel to 1.
-	 * Useful for color correction tools where your only interested in hue. */
+	 * Useful for color correction tools where you're only interested in hue. */
 	if (but->flag & UI_BUT_COLOR_LOCK)
 		hsv[2] = 1.f;
 	else if (color_profile)

Modified: trunk/blender/source/blender/editors/space_graph/space_graph.c
===================================================================
--- trunk/blender/source/blender/editors/space_graph/space_graph.c	2011-10-23 15:27:36 UTC (rev 41224)
+++ trunk/blender/source/blender/editors/space_graph/space_graph.c	2011-10-23 15:43:12 UTC (rev 41225)
@@ -110,7 +110,7 @@
 	sipo->ads= MEM_callocN(sizeof(bDopeSheet), "GraphEdit DopeSheet");
 	sipo->ads->source= (ID *)scene;
 	
-	/* settings for making it easier by default to just see what your interested in tweaking */
+	/* settings for making it easier by default to just see what you're interested in tweaking */
 	sipo->ads->filterflag |= ADS_FILTER_ONLYSEL;
 	sipo->flag |= SIPO_SELVHANDLESONLY;
 	

Modified: trunk/blender/source/blender/editors/space_outliner/outliner_tools.c
===================================================================
--- trunk/blender/source/blender/editors/space_outliner/outliner_tools.c	2011-10-23 15:27:36 UTC (rev 41224)
+++ trunk/blender/source/blender/editors/space_outliner/outliner_tools.c	2011-10-23 15:43:12 UTC (rev 41225)
@@ -298,7 +298,7 @@
 		tselem->id= NULL;
 
 		/* XXX: tree management normally happens from draw_outliner(), but when
-		        your clicking to fast on Delete object from context menu in
+		        you're clicking to fast on Delete object from context menu in
 		        outliner several mouse events can be handled in one cycle without
 		        handling notifiers/redraw which leads to deleting the same object twice.
 		        cleanup tree here to prevent such cases. */

Modified: trunk/blender/source/blender/makesrna/intern/rna_action.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_action.c	2011-10-23 15:27:36 UTC (rev 41224)
+++ trunk/blender/source/blender/makesrna/intern/rna_action.c	2011-10-23 15:43:12 UTC (rev 41225)
@@ -612,7 +612,7 @@
 	prop= RNA_def_property(srna, "id_root", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_sdna(prop, NULL, "idroot");
 	RNA_def_property_enum_items(prop, id_type_items);
-	RNA_def_property_ui_text(prop, "ID Root Type", "Type of ID-block that action can be used on - DO NOT CHANGE UNLESS YOU KNOW WHAT YOUR DOING");
+	RNA_def_property_ui_text(prop, "ID Root Type", "Type of ID-block that action can be used on - DO NOT CHANGE UNLESS YOU KNOW WHAT YOU'RE DOING");
 	
 	/* API calls */
 	RNA_api_action(srna);




More information about the Bf-blender-cvs mailing list