fix for gtk not liking unicode?

svn: r11603
This commit is contained in:
Doug Blank 2009-01-10 16:26:24 +00:00
parent 39bea3d80c
commit 832acac4c9

View File

@ -56,10 +56,18 @@ class SimpleTable:
def get_row_count(self): def get_row_count(self):
return len(self.__rows) return len(self.__rows)
def columns(self, *columns): def columns(self, *cols):
""" """
Set the columns Set the columns
""" """
# gtk tree doesn't like unicode?!
columns = []
for col in cols:
if type(col) == unicode:
columns.append(str(col))
else:
columns.append(col)
# end of unicode fix
self.__columns = list(copy.copy(columns)) self.__columns = list(copy.copy(columns))
self.__sort_vals = [[] for i in range(len(self.__columns))] self.__sort_vals = [[] for i in range(len(self.__columns))]