aboutsummaryrefslogtreecommitdiff
path: root/src/uicmd.cc
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2009-02-08 14:02:56 -0300
committercorvid <corvid@lavabit.com>2009-02-08 14:02:56 -0300
commit4e417d3988cff4143da06f438fcd39cb228ed1f9 (patch)
treedb15fc7be182ecd004909797aae4a431812cae68 /src/uicmd.cc
parent175197dc885e13446fcc8662fd58a58dc46ad9d3 (diff)
Switched load images on/off feature to the Tools menu
Diffstat (limited to 'src/uicmd.cc')
-rw-r--r--src/uicmd.cc20
1 files changed, 2 insertions, 18 deletions
diff --git a/src/uicmd.cc b/src/uicmd.cc
index 844518a7..75d6336e 100644
--- a/src/uicmd.cc
+++ b/src/uicmd.cc
@@ -659,11 +659,11 @@ void a_UIcmd_add_bookmark(BrowserWindow *bw, const DilloUrl *url)
/*
* Popup the page menu
*/
-void a_UIcmd_page_popup(void *vbw, bool_t has_bugs, bool_t unloaded_imgs)
+void a_UIcmd_page_popup(void *vbw, bool_t has_bugs)
{
BrowserWindow *bw = (BrowserWindow*)vbw;
DilloUrl *url = a_History_get_url(NAV_TOP_UIDX(bw));
- a_Menu_page_popup(bw, url, has_bugs, unloaded_imgs);
+ a_Menu_page_popup(bw, url, has_bugs);
}
/*
@@ -905,22 +905,6 @@ void a_UIcmd_set_msg(BrowserWindow *bw, const char *format, ...)
}
/*
- * Check whether the UI has automatic image loading enabled.
- */
-bool_t a_UIcmd_get_images_enabled(BrowserWindow *bw)
-{
- return BW2UI(bw)->images_enabled();
-}
-
-/*
- * Enable/Disable automatic image loading.
- */
-void a_UIcmd_set_images_enabled(BrowserWindow *bw, int flag)
-{
- BW2UI(bw)->images_enabled(flag);
-}
-
-/*
* Set the sensitivity of back/forw/stop buttons.
*/
void a_UIcmd_set_buttons_sens(BrowserWindow *bw)