Fix copyright and use glib type in gen-western-table
authorRoss Burton <ross@linux.intel.com>
Wed, 3 Jun 2009 07:31:54 +0000 (08:31 +0100)
committerRoss Burton <ross@linux.intel.com>
Wed, 3 Jun 2009 07:31:54 +0000 (08:31 +0100)
addressbook/libebook/gen-western-table.py

index b930801..51baefa 100755 (executable)
@@ -1,6 +1,6 @@
 #! /usr/bin/env python
 
-# Copyright (C) 2006 OpenedHand Ltd
+# Copyright (C) 2006 Intel Corporation
 # 
 # This program is free software; you can redistribute it and/or modify it under
 # the terms of version 2 of the GNU Lesser General Public License as published
@@ -23,7 +23,7 @@ var = None
 strings = []
 
 def output():
-    print "static const char %s_table[] = {" % var
+    print "static const gchar %s_table[] = {" % var
     for s in strings:
         print "  \"%s\\0\"" % s
     print "};"