Commit f9cf83a6 authored by winckel's avatar winckel

Added messages background color selector.

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4487 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 38045ff3
...@@ -707,7 +707,7 @@ static int update_filters() { ...@@ -707,7 +707,7 @@ static int update_filters() {
{ {
if (strcmp (types->name, "MESSAGES_ID_MAX") != 0) if (strcmp (types->name, "MESSAGES_ID_MAX") != 0)
{ {
ui_filters_add (FILTER_MESSAGES, types->init_value, types->name, ENTRY_ENABLED_UNDEFINED); ui_filters_add (FILTER_MESSAGES, types->init_value, types->name, ENTRY_ENABLED_UNDEFINED, NULL);
} }
types = types->next; types = types->next;
} }
...@@ -721,7 +721,7 @@ static int update_filters() { ...@@ -721,7 +721,7 @@ static int update_filters() {
while (types != NULL) { while (types != NULL) {
if ((strcmp (types->name, "TASK_FIRST") != 0) && (strcmp (types->name, "TASK_MAX") != 0)) if ((strcmp (types->name, "TASK_FIRST") != 0) && (strcmp (types->name, "TASK_MAX") != 0))
{ {
ui_filters_add(FILTER_ORIGIN_TASKS, types->init_value, types->name, ENTRY_ENABLED_UNDEFINED); ui_filters_add(FILTER_ORIGIN_TASKS, types->init_value, types->name, ENTRY_ENABLED_UNDEFINED, NULL);
} }
types = types->next; types = types->next;
} }
...@@ -735,7 +735,7 @@ static int update_filters() { ...@@ -735,7 +735,7 @@ static int update_filters() {
while (types != NULL) { while (types != NULL) {
if ((strcmp (types->name, "TASK_FIRST") != 0) && (strcmp (types->name, "TASK_MAX") != 0)) if ((strcmp (types->name, "TASK_FIRST") != 0) && (strcmp (types->name, "TASK_MAX") != 0))
{ {
ui_filters_add(FILTER_DESTINATION_TASKS, types->init_value, types->name, ENTRY_ENABLED_UNDEFINED); ui_filters_add(FILTER_DESTINATION_TASKS, types->init_value, types->name, ENTRY_ENABLED_UNDEFINED, NULL);
} }
types = types->next; types = types->next;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment