diff options
author | Jorge Arellano Cid <devnull@localhost> | 2013-11-29 12:20:58 +0100 |
---|---|---|
committer | Jorge Arellano Cid <devnull@localhost> | 2013-11-29 12:20:58 +0100 |
commit | 740ff520243ed6e3154249dee01e27f3fa0a22d1 (patch) | |
tree | 61f5fb053050a141edd8ac1e91b14c217a79355e /src/html.cc | |
parent | 6849d366312901974812738e741f4007b5cff122 (diff) |
Use img_rndr instead of img_rnd to avoid associating "rnd" suffex with random.
Diffstat (limited to 'src/html.cc')
-rw-r--r-- | src/html.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html.cc b/src/html.cc index 00882ccc..1257c102 100644 --- a/src/html.cc +++ b/src/html.cc @@ -2301,7 +2301,7 @@ static void Html_tag_content_img(DilloHtml *html, const char *tag, int tagsize) // At this point, we know that Image->ir represents an image // widget. Notice that the order of the casts matters, because of // multiple inheritance. - dw::Image *dwi = (dw::Image*)(dw::core::ImgRenderer*)Image->img_rnd; + dw::Image *dwi = (dw::Image*)(dw::core::ImgRenderer*)Image->img_rndr; HT2TB(html)->addWidget(dwi, html->style()); /* Image maps */ @@ -2364,7 +2364,7 @@ static void Html_tag_close_map(DilloHtml *html) // widget. (Really? Is this assumtion safe?) Notice that the // order of the casts matters, because of multiple // inheritance. - dw::Image *dwi = (dw::Image*)(dw::core::ImgRenderer*)img->img_rnd; + dw::Image *dwi = (dw::Image*)(dw::core::ImgRenderer*)img->img_rndr; dwi->forceMapRedraw(); } } |