diff options
author | Gevel Tekens <geveltekens@gmail.com> | 2025-02-04 23:13:27 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-02-05 21:50:39 +0100 |
commit | 6cd133d2f242d36bd48ddea44acd868f70782d0b (patch) | |
tree | d6846c0e13706fb1dbb94885cb2980a639d22735 /src/png.c | |
parent | 0c7e087fbd0278da9a39bd16ab9385073f1f495c (diff) |
Fix several typos
See: https://lists.mailman3.com/hyperkitty/list/dillo-dev@mailman3.com/thread/L3FFAINJJMIOZQNID5HC2DHKJIIIHEYH/
Diffstat (limited to 'src/png.c')
-rw-r--r-- | src/png.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -250,14 +250,14 @@ static void break; case 4: { - /* TODO: get the backgound color from the parent + /* TODO: get the background color from the parent * of the image widget -- Livio. */ int a, bg_red, bg_green, bg_blue; uchar_t *pl = png->linebuf; uchar_t *data = png->image_data + (row_num * png->rowbytes); /* TODO: maybe change prefs.bg_color to `a_Dw_widget_get_bg_color`, - * when background colors are correctly implementated */ + * when background colors are correctly implemented */ bg_blue = (png->bgcolor) & 0xFF; bg_green = (png->bgcolor>>8) & 0xFF; bg_red = (png->bgcolor>>16) & 0xFF; |