edje_edit: Fix clang warning of unused variables
authorChris Michael <cp.michael@samsung.com>
Wed, 14 Oct 2015 13:43:12 +0000 (09:43 -0400)
committerChris Michael <cp.michael@samsung.com>
Wed, 14 Oct 2015 13:43:12 +0000 (09:43 -0400)
Summary: clang reports that these static variables are not being used
anywhere (and grep confirms this), so remove them.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/lib/edje/edje_edit.c

index 4cedfee..8d09e45 100644 (file)
 
 #define MY_CLASS EDJE_EDIT_CLASS
 
-static const char EDJE_EDIT_ERROR_GROUP_CURRENTLY_USED_STR[] = "Current group cannot be deleted";
-static const char EDJE_EDIT_ERROR_GROUP_REFERENCED_STR[] = "Group still in use";
-static const char EDJE_EDIT_ERROR_GROUP_DOES_NOT_EXIST_STR[] = "Group does not exist";
-
 EAPI Eina_Error EDJE_EDIT_ERROR_GROUP_CURRENTLY_USED = 0;
 EAPI Eina_Error EDJE_EDIT_ERROR_GROUP_REFERENCED = 0;
 EAPI Eina_Error EDJE_EDIT_ERROR_GROUP_DOES_NOT_EXIST = 0;