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/form.cc | |
parent | 6849d366312901974812738e741f4007b5cff122 (diff) |
Use img_rndr instead of img_rnd to avoid associating "rnd" suffex with random.
Diffstat (limited to 'src/form.cc')
-rw-r--r-- | src/form.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/form.cc b/src/form.cc index b6df56f5..c5bb10af 100644 --- a/src/form.cc +++ b/src/form.cc @@ -2008,7 +2008,7 @@ static Embed *Html_input_image(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; dwi->setStyle (html->backgroundStyle ()); ResourceFactory *factory = HT2LT(html)->getResourceFactory(); ComplexButtonResource *complex_b_r = |