[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33058] trunk/blender/source/blender/ editors/space_file/file_draw.c: == filebrowser ==

Andrea Weikert elubie at gmx.net
Sun Nov 14 12:59:42 CET 2010


Revision: 33058
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33058
Author:   elubie
Date:     2010-11-14 12:59:42 +0100 (Sun, 14 Nov 2010)

Log Message:
-----------
== filebrowser ==
* compile fix on non-Windows platforms.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_file/file_draw.c

Modified: trunk/blender/source/blender/editors/space_file/file_draw.c
===================================================================
--- trunk/blender/source/blender/editors/space_file/file_draw.c	2010-11-14 10:53:49 UTC (rev 33057)
+++ trunk/blender/source/blender/editors/space_file/file_draw.c	2010-11-14 11:59:42 UTC (rev 33058)
@@ -561,16 +561,16 @@
 
 #ifndef WIN32
 			/* rwx rwx rwx */
-			file_draw_string(spos, sy, file->mode1, layout->column_widths[COLUMN_MODE1], layout->tile_h, align); 
+			file_draw_string(sx, sy, file->mode1, layout->column_widths[COLUMN_MODE1], layout->tile_h, align); 
 			sx += layout->column_widths[COLUMN_MODE1] + 12;
 
-			file_draw_string(spos, sy, file->mode2, layout->column_widths[COLUMN_MODE2], layout->tile_h, align);
+			file_draw_string(sx, sy, file->mode2, layout->column_widths[COLUMN_MODE2], layout->tile_h, align);
 			sx += layout->column_widths[COLUMN_MODE2] + 12;
 
-			file_draw_string(spos, sy, file->mode3, layout->column_widths[COLUMN_MODE3], layout->tile_h, align);
+			file_draw_string(sx, sy, file->mode3, layout->column_widths[COLUMN_MODE3], layout->tile_h, align);
 			sx += layout->column_widths[COLUMN_MODE3] + 12;
 
-			file_draw_string(spos, sy, file->owner, layout->column_widths[COLUMN_OWNER] , layout->tile_h, align);
+			file_draw_string(sx, sy, file->owner, layout->column_widths[COLUMN_OWNER] , layout->tile_h, align);
 			sx += layout->column_widths[COLUMN_OWNER] + 12;
 #endif
 





More information about the Bf-blender-cvs mailing list