summaryrefslogtreecommitdiff
path: root/perf
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2005-11-17 14:57:24 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-11-17 14:57:24 +0000
commit9b593427aab6bb5bd63bd7d657e871c66bf1704a (patch)
tree07025be116029ed4745df8c48d925bdc8a1b93df /perf
parent81be0b4311765c54dedfa16079444b844ef5cf8b (diff)
downloadgtk+-9b593427aab6bb5bd63bd7d657e871c66bf1704a.tar.gz
const correctness fixes
found by Arjan van de Ven and gcc.
Diffstat (limited to 'perf')
-rw-r--r--perf/treeview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perf/treeview.c b/perf/treeview.c
index 461a67a377..4c5c2d7999 100644
--- a/perf/treeview.c
+++ b/perf/treeview.c
@@ -7,7 +7,7 @@ struct row_data {
char *text2;
};
-static struct row_data row_data[] = {
+static const struct row_data row_data[] = {
{ GTK_STOCK_NEW, "First", "Here bygynneth the Book of the tales of Caunterbury." },
{ GTK_STOCK_OPEN, "Second", "Whan that Aprille, with hise shoures soote," },
{ GTK_STOCK_ABOUT, "Third", "The droghte of March hath perced to the roote" },