aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-12-23 22:55:24 +0100
committerjcid <devnull@localhost>2007-12-23 22:55:24 +0100
commit516941cbf21ce901e39b63fd0fba2e254a17c00e (patch)
tree54f57ea14a6ab8f4329dcd2efeff45172639d23d /src
parentd893172796bca7f8b68914e5af138ff552e9f2b3 (diff)
Updated doc/Images.txt
Diffstat (limited to 'src')
-rw-r--r--src/html.cc8
-rw-r--r--src/image.hh10
2 files changed, 8 insertions, 10 deletions
diff --git a/src/html.cc b/src/html.cc
index 2fa0af4b..16601653 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -862,7 +862,7 @@ DilloHtml::~DilloHtml()
DilloHtmlForm *form;
DilloHtmlInput *input_j;
- MSG("::~DilloHtml(this=%p)\n", this);
+ _MSG("::~DilloHtml(this=%p)\n", this);
a_Bw_remove_doc(bw, this);
@@ -2816,12 +2816,10 @@ static void Html_tag_open_img(DilloHtml *html, const char *tag, int tagsize)
if (S_TOP(html)->style->x_link != -1) {
/* In this case we can use the text color */
style_attrs.setBorderColor (
- Color::createShaded (HT2LT(html),
- style_attrs.color->getColor()));
+ Color::createShaded (HT2LT(html), style_attrs.color->getColor()));
} else {
style_attrs.setBorderColor (
- Color::createShaded (HT2LT(html),
- html->link_color));
+ Color::createShaded (HT2LT(html), html->link_color));
}
style_attrs.setBorderStyle (BORDER_SOLID);
style_attrs.borderWidth.setVal (border);
diff --git a/src/image.hh b/src/image.hh
index fde51838..8ed8b081 100644
--- a/src/image.hh
+++ b/src/image.hh
@@ -39,14 +39,14 @@ struct _DilloImage {
uint_t height;
const uchar_t *cmap; /* Color map (only for indexed) */
- DilloImgType in_type; /* Image Type */
+ DilloImgType in_type; /* Image Type */
int32_t bg_color; /* Background color */
- int ProcessedBytes; /* Amount of bytes already decoded */
- bitvec_t *BitVec; /* Bit vector for decoded rows */
- ImageState State;
+ int ProcessedBytes; /* Amount of bytes already decoded */
+ bitvec_t *BitVec; /* Bit vector for decoded rows */
+ ImageState State; /* Processing status */
- int RefCount; /* Reference counter */
+ int RefCount; /* Reference counter */
};