summaryrefslogtreecommitdiff
path: root/src/png.c
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-09-30 16:32:41 +0200
committerjcid <devnull@localhost>2008-09-30 16:32:41 +0200
commit0f7c6294d403e3ed80961e91f906f118e0f0adc5 (patch)
tree151cb6cc9f333a51ba15fb66ac4480bb4da0e0fa /src/png.c
parent6deac7761c79417469c515268ba010a5f1fd60fb (diff)
- s/todo:/TODO:/g
Diffstat (limited to 'src/png.c')
-rw-r--r--src/png.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/png.c b/src/png.c
index cd7d4e03..fa07e781 100644
--- a/src/png.c
+++ b/src/png.c
@@ -169,7 +169,7 @@ Png_datainfo_callback(png_structp png_ptr, png_infop info_ptr)
}
/* Get and set gamma information. Beware: gamma correction 2.2 will
- only work on PC's. todo: select screen gamma correction for other
+ only work on PC's. TODO: select screen gamma correction for other
platforms. */
if (png_get_gAMA(png_ptr, info_ptr, &gamma))
png_set_gamma(png_ptr, 2.2, gamma);
@@ -243,13 +243,13 @@ static void
break;
case 4:
{
- /* todo: get the backgound color from the parent
+ /* TODO: get the backgound 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`,
+ /* TODO: maybe change prefs.bg_color to `a_Dw_widget_get_bg_color`,
* when background colors are correctly implementated */
bg_blue = (png->Image->bg_color) & 0xFF;
bg_green = (png->Image->bg_color>>8) & 0xFF;