aboutsummaryrefslogtreecommitdiff
path: root/src/uicmd.cc
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-10-10 22:39:34 +0200
committerjcid <devnull@localhost>2008-10-10 22:39:34 +0200
commit5bfc8cd1f728bd3ab706d4838dac49463ef73f0b (patch)
tree8c72425f473d109ce59117a57672b5acb20a65ae /src/uicmd.cc
parentb73bb7f060682f40af97689a059ba9aa0fa13aa9 (diff)
- WORKAROUND to display HTML for sylpheed.
Diffstat (limited to 'src/uicmd.cc')
-rw-r--r--src/uicmd.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/uicmd.cc b/src/uicmd.cc
index e56605bd..564e9957 100644
--- a/src/uicmd.cc
+++ b/src/uicmd.cc
@@ -881,7 +881,15 @@ void a_UIcmd_set_msg(BrowserWindow *bw, const char *format, ...)
*/
bool_t a_UIcmd_get_images_enabled(BrowserWindow *bw)
{
- return BW2UI(bw)->get_images_enabled();
+ 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);
}
/*