diff options
author | Savio Sena <savio.sena@acm.org> | 2014-09-28 02:22:30 -0300 |
---|---|---|
committer | Savio Sena <savio.sena@acm.org> | 2014-09-28 02:22:30 -0300 |
commit | 9ee8b2a45b99346cc93969eaede249d84ed83db1 (patch) | |
tree | c0b0aa795e7e2ba2407757ec9494198e186404a9 /src | |
parent | 4a6fb1ef934573c0db3423c58d3730d9629bc416 (diff) |
Add a comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/cxx/font_effect_blur_alpha.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/cxx/font_effect_blur_alpha.cc b/src/bin/cxx/font_effect_blur_alpha.cc index 543cad1..0dfb5a7 100644 --- a/src/bin/cxx/font_effect_blur_alpha.cc +++ b/src/bin/cxx/font_effect_blur_alpha.cc | |||
@@ -51,7 +51,7 @@ static void _cleanup(void) | |||
51 | static void _loop(double t, int f) | 51 | static void _loop(double t, int f) |
52 | { | 52 | { |
53 | char buf[256]; | 53 | char buf[256]; |
54 | char *str = "padding_set(%d);blur(%d,color=black);"; | 54 | char *str = "padding_set(%d);blur(%d,color=black);"; // XXX remove warning |
55 | sprintf(buf, str, MAX_BLUR, ((f % MAX_BLUR) + 1)); | 55 | sprintf(buf, str, MAX_BLUR, ((f % MAX_BLUR) + 1)); |
56 | eo_do(text, evas_obj_text_filter_program_set(buf)); | 56 | eo_do(text, evas_obj_text_filter_program_set(buf)); |
57 | 57 | ||