diff options
author | jcid <devnull@localhost> | 2007-11-10 23:21:06 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-11-10 23:21:06 +0100 |
commit | 7d40462d35d3bf825a0ee142cb9e83f52a59e3fc (patch) | |
tree | 96ede566370dadadcbe3941ca7ef90b4727f1e10 /src/plain.cc | |
parent | 9201620966c4ef8a0e138c423a6d42c14b507d88 (diff) |
Reimplemented html.cc using a class, removed the linkblock,
and hooked memory-release to dw destruction.
Diffstat (limited to 'src/plain.cc')
-rw-r--r-- | src/plain.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plain.cc b/src/plain.cc index 586d42d4..0fc5dab8 100644 --- a/src/plain.cc +++ b/src/plain.cc @@ -91,7 +91,7 @@ DilloPlain::DilloPlain(BrowserWindow *p_bw, const DilloUrl *p_url) style::StyleAttrs styleAttrs; style::FontAttrs fontAttrs; - /* init event receiver */ + /* Init event receiver */ plainReceiver.plain = this; /* Init internal variables */ @@ -128,6 +128,7 @@ DilloPlain::DilloPlain(BrowserWindow *p_bw, const DilloUrl *p_url) */ DilloPlain::~DilloPlain() { + MSG("::~DilloPlain()\n"); a_Url_free(url); widgetStyle->unref(); } @@ -136,7 +137,7 @@ DilloPlain::~DilloPlain() * Receive the mouse button press event */ bool DilloPlain::PlainEventReceiver::buttonPress (Widget *widget, - EventButton *event) + EventButton *event) { _MSG("DilloPlain::PlainEventReceiver::buttonPress\n"); |