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:
authorTon Roosendaal <ton@blender.org>2003-04-30 17:22:26 +0400
committerTon Roosendaal <ton@blender.org>2003-04-30 17:22:26 +0400
commit9174db096b7c114552a9c61d12701509da00fa09 (patch)
tree32c098c5e232294754ec219f560152cd031a4f71 /source/blender/src/imasel.c
parent53999bd80b1e7a1a51e2470fde038ad5aaecc888 (diff)
LAST of the c code comment translations... hooray!
Might be possible I mised an .h or so, just notify me in that case.
Diffstat (limited to 'source/blender/src/imasel.c')
-rw-r--r--source/blender/src/imasel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/imasel.c b/source/blender/src/imasel.c
index c1fe8686da4..f12c1bbd813 100644
--- a/source/blender/src/imasel.c
+++ b/source/blender/src/imasel.c
@@ -550,7 +550,7 @@ void get_next_image(SpaceImaSel *simasel)
IMB_converttocmap(ibuf);
- /* copy ibuf->rect naar ima->pict_rect */
+ /* copy ibuf->rect to ima->pict_rect */
size = ima->dw * ima->dh; if (size > 3968) size = 3968;
longtochar(ima->pict_rect, ibuf->rect, size);
@@ -901,8 +901,8 @@ void change_imadir(SpaceImaSel *simasel)
void check_imasel_copy(SpaceImaSel *simasel)
{
- /* LET OP: wordt ook gebruikt bij inlezen blender file */
- /* dingen op nul zetten, opnieuw malloccen etc */
+ /* WATCH IT: also used when reading blender file */
+ /* initialize stuff, malloc, etc */
simasel->first_sel_ima = 0;
simasel->hilite_ima = 0;
simasel->firstdir = 0;
@@ -916,7 +916,7 @@ void check_imasel_copy(SpaceImaSel *simasel)
void free_imasel(SpaceImaSel *simasel)
{
- /* NIET de imasel zelf vrijgeven */
+ /* do not free imasel itself */
clear_ima_dir(simasel);
IMB_freeImBuf(simasel->cmap);