aboutsummaryrefslogtreecommitdiff
path: root/src/html_common.hh
diff options
context:
space:
mode:
authorcorvid <devnull@localhost>2014-05-07 20:36:52 +0000
committercorvid <devnull@localhost>2014-05-07 20:36:52 +0000
commit16bb4e2d2c69c9aa9c71a6f31e8ae7a317689536 (patch)
tree95f5c6843dee21601eb8011c7b69f27bf3b58cea /src/html_common.hh
parent5e8dec509c8402a8f761e3156bd22278c332c5fc (diff)
page bugs: fix line numbers for bugs in entities
Diffstat (limited to 'src/html_common.hh')
-rw-r--r--src/html_common.hh5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/html_common.hh b/src/html_common.hh
index 147807b3..68ed0d08 100644
--- a/src/html_common.hh
+++ b/src/html_common.hh
@@ -156,8 +156,7 @@ public: //BUG: for now everything is public
char *content_type, *charset;
bool stop_parser;
- size_t CurrTagOfs;
- size_t OldTagOfs, OldTagLine;
+ size_t CurrOfs, OldOfs, OldLine;
DilloHtmlDocumentType DocType; /* as given by DOCTYPE tag */
float DocTypeVersion; /* HTML or XHTML version number */
@@ -211,7 +210,7 @@ public:
void bugMessage(const char *format, ... );
void connectSignals(dw::core::Widget *dw);
void write(char *Buf, int BufSize, int Eof);
- int getCurTagLineNumber();
+ int getCurrLineNumber();
void finishParsing(int ClientKey);
int formNew(DilloHtmlMethod method, const DilloUrl *action,
DilloHtmlEnc enc, const char *charset);