aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-config.c
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/table/e-table-config.c')
-rw-r--r--widgets/table/e-table-config.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/widgets/table/e-table-config.c b/widgets/table/e-table-config.c
index 1b2efa4f02..58f11a1e3a 100644
--- a/widgets/table/e-table-config.c
+++ b/widgets/table/e-table-config.c
@@ -14,6 +14,9 @@
*/
#include <config.h>
+
+#include "e-table-config.h"
+
#include <stdlib.h>
#include <string.h>
#include <gtk/gtkentry.h>
@@ -24,7 +27,6 @@
#include <libgnomeui/gnome-dialog.h>
#include <libgnomeui/gnome-propertybox.h>
#include <glade/glade.h>
-#include "e-table-config.h"
#include "gal/util/e-util.h"
#include "gal/util/e-i18n.h"
@@ -111,7 +113,7 @@ find_model_column_by_name (ETableSpecification *spec, const char *s)
for (column = spec->columns; *column; column++){
- if (strcasecmp ((*column)->title, s) == 0)
+ if (g_strcasecmp ((*column)->title, s) == 0)
return (*column)->model_col;
}
return -1;