diff options
author | jcid <devnull@localhost> | 2007-11-03 21:31:59 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-11-03 21:31:59 +0100 |
commit | e6dfd06634d9d7930585b920bdaea62f0ac4c92d (patch) | |
tree | fd2e701b2fc41779d97d911ccf81509cba9ee3dc /src/nav.c | |
parent | 0774029d6efaf8e6bd8fe2fd095070123322dfe2 (diff) |
Fixed following image links after loading the image.
Diffstat (limited to 'src/nav.c')
-rw-r--r-- | src/nav.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -189,12 +189,12 @@ static void Nav_open_url(BrowserWindow *bw, const DilloUrl *url, int offset) /* Get the url of the current page */ idx = a_Nav_stack_ptr(bw); old_url = a_History_get_url(NAV_UIDX(bw, idx)); - MSG("Nav_open_url: idx=%d old_url='%s'\n", idx, URL_STR(old_url)); + _MSG("Nav_open_url: idx=%d old_url='%s'\n", idx, URL_STR(old_url)); /* Record current scrolling position */ if (old_url) { a_UIcmd_get_scroll_xy(bw, &x, &y); Nav_set_scroll_pos(bw, idx, x, y); - MSG("Nav_open_url: saved scroll of '%s' at x=%d y=%d\n", + _MSG("Nav_open_url: saved scroll of '%s' at x=%d y=%d\n", URL_STR(old_url), x, y); } @@ -279,7 +279,7 @@ void a_Nav_expect_done(BrowserWindow *bw) /* Scroll to were we were in this page */ Nav_get_scroll_pos(bw, &posx, &posy); a_UIcmd_set_scroll_xy(bw, posx, posy); - MSG("Nav: expect_done scrolling to x=%d y=%d\n", posx, posy); + _MSG("Nav: expect_done scrolling to x=%d y=%d\n", posx, posy); } Nav_stack_clean(bw); a_UIcmd_set_buttons_sens(bw); |