summaryrefslogtreecommitdiff
path: root/beos
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2012-03-29 00:05:54 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2012-03-29 00:05:54 +0000
commit5a42a7a791c8c0f267c4dbe07dff8455c3ad1235 (patch)
treec8a86cf0634969aafe02604357afa5534f31a14c /beos
parentcbd3c31120b3926977a33d2abc46f3462d0617b0 (diff)
downloadnetsurf-5a42a7a791c8c0f267c4dbe07dff8455c3ad1235.tar.gz
netsurf-5a42a7a791c8c0f267c4dbe07dff8455c3ad1235.tar.bz2
Fix the fix. (we used a different name for this struct member than on other platforms) :p
svn path=/trunk/netsurf/; revision=13770
Diffstat (limited to 'beos')
-rw-r--r--beos/system_colour.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/beos/system_colour.cpp b/beos/system_colour.cpp
index 921157c84..eeac33fc5 100644
--- a/beos/system_colour.cpp
+++ b/beos/system_colour.cpp
@@ -333,7 +333,7 @@ colour gui_system_colour_char(const char *name)
for (ccount = 0; ccount < colour_list_len; ccount++) {
if (strcmp(name, colour_list[ccount].name) == 0) {
- ret = colour_list[ccount].colour;
+ ret = colour_list[ccount].css_colour;
break;
}
}