[Bf-blender-cvs] [537209cb4b2] master: Remove debug prints from previous commit.

Bastien Montagne noreply at git.blender.org
Mon Jul 29 14:46:26 CEST 2019


Commit: 537209cb4b2a3f88a33f74aa69f99bcb4e48cbb9
Author: Bastien Montagne
Date:   Mon Jul 29 14:45:56 2019 +0200
Branches: master
https://developer.blender.org/rB537209cb4b2a3f88a33f74aa69f99bcb4e48cbb9

Remove debug prints from previous commit.

Sorry for the noise...

===================================================================

M	source/blender/imbuf/intern/thumbs_font.c

===================================================================

diff --git a/source/blender/imbuf/intern/thumbs_font.c b/source/blender/imbuf/intern/thumbs_font.c
index d9a4363d01c..ddb1eb62006 100644
--- a/source/blender/imbuf/intern/thumbs_font.c
+++ b/source/blender/imbuf/intern/thumbs_font.c
@@ -45,7 +45,6 @@ void IMB_thumb_clear_translations(void)
 {
   for (int i = ARRAY_SIZE(thumb_str); i-- > 0;) {
     i18n_thumb_str[i] = NULL;
-    printf("%s: clearing i18n string %d\n", __func__, i);
   }
 }
 
@@ -53,7 +52,6 @@ void IMB_thumb_ensure_translations(void)
 {
   for (int i = ARRAY_SIZE(thumb_str); i-- > 0;) {
     i18n_thumb_str[i] = BLT_translate_do(BLT_I18NCONTEXT_DEFAULT, thumb_str[i]);
-    printf("%s: translated %s to %s\n", __func__, thumb_str[i], i18n_thumb_str[i]);
   }
 }



More information about the Bf-blender-cvs mailing list