diff options
author | corvid <corvid@lavalbit.com> | 2009-04-30 21:45:07 +0000 |
---|---|---|
committer | corvid <corvid@lavalbit.com> | 2009-04-30 21:45:07 +0000 |
commit | 3228301e63d74a1930fdc2d098ff69076b601f4a (patch) | |
tree | 074bcd7821b1aa9d9a10f2a88c1f4b63d68a6eef /src | |
parent | 61eb69b770d3475a88b363165698b20cb81e9c3e (diff) |
_MSG out some MSGs
Diffstat (limited to 'src')
-rw-r--r-- | src/menu.cc | 4 | ||||
-rw-r--r-- | src/plain.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/menu.cc b/src/menu.cc index b94800af..ba650268 100644 --- a/src/menu.cc +++ b/src/menu.cc @@ -110,7 +110,7 @@ static void Menu_copy_urlstr_cb(Widget *) static void Menu_link_cb(Widget*, void *user_data) { DilloUrl *url = (DilloUrl *) user_data ; - MSG("Menu_link_cb: click! :-)\n"); + _MSG("Menu_link_cb: click! :-)\n"); if (url) a_Menu_link_popup(popup_bw, url); @@ -121,7 +121,7 @@ static void Menu_link_cb(Widget*, void *user_data) */ static void Menu_open_url_cb(Widget* ) { - MSG("Open URL cb: click! :-)\n"); + _MSG("Open URL cb: click! :-)\n"); a_UIcmd_open_url(popup_bw, popup_url); } diff --git a/src/plain.cc b/src/plain.cc index 5111912a..1ba0b0e3 100644 --- a/src/plain.cc +++ b/src/plain.cc @@ -115,7 +115,7 @@ DilloPlain::DilloPlain(BrowserWindow *p_bw, const DilloUrl *p_url) */ DilloPlain::~DilloPlain() { - MSG("::~DilloPlain()\n"); + _MSG("::~DilloPlain()\n"); a_Url_free(url); widgetStyle->unref(); } @@ -199,7 +199,7 @@ void *a_Plain_text(const char *type, void *P, CA_Callback_t *Call, void **Data) void a_Plain_free(void *data) { - MSG("a_Plain_free! %p\n", data); + _MSG("a_Plain_free! %p\n", data); delete ((DilloPlain *)data); } |