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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-07-29 15:45:56 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-07-29 15:45:56 +0300
commit537209cb4b2a3f88a33f74aa69f99bcb4e48cbb9 (patch)
treeb2b11f19aacff3a3df840431c7dcfdeb439fa1dc /source/blender/imbuf/intern/thumbs_font.c
parent3b6c75dc318223a7e559805ed9802c46c73f2f28 (diff)
Remove debug prints from previous commit.
Sorry for the noise...
Diffstat (limited to 'source/blender/imbuf/intern/thumbs_font.c')
-rw-r--r--source/blender/imbuf/intern/thumbs_font.c2
1 files changed, 0 insertions, 2 deletions
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]);
}
}