From aadce3fe472af3eaf8336d8e6099dcdd12b083a0 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 9 Apr 2012 03:43:45 +0000 Subject: [PATCH] spell complaint properly SVN revision: 69959 --- legacy/evas/src/lib/canvas/evas_object_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/evas/src/lib/canvas/evas_object_main.c b/legacy/evas/src/lib/canvas/evas_object_main.c index 48e97de0a7..a0b9ad70ee 100644 --- a/legacy/evas/src/lib/canvas/evas_object_main.c +++ b/legacy/evas/src/lib/canvas/evas_object_main.c @@ -1052,17 +1052,17 @@ evas_object_color_set(Evas_Object *obj, int r, int g, int b, int a) if (r > a) { r = a; - ERR("Evas only handle pre multiplied color !"); + ERR("Evas only handles pre multiplied colors!"); } if (g > a) { g = a; - ERR("Evas only handle pre multiplied color !"); + ERR("Evas only handles pre multiplied colors!"); } if (b > a) { b = a; - ERR("Evas only handle pre multiplied color !"); + ERR("Evas only handles pre multiplied colors!"); } if (evas_object_intercept_call_color_set(obj, r, g, b, a)) return;