diff options
author | jcid <devnull@localhost> | 2007-11-18 21:17:27 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-11-18 21:17:27 +0100 |
commit | 256fc28baf951ab2a8a47c10fbbec3edcf28c96c (patch) | |
tree | 05fe989e477bbbdae9c1ceff40180c1e210f7239 /src/uicmd.cc | |
parent | 18b139e2f2e1cecb18d9d1e803ac5551b5a01d6c (diff) |
copy image/link location
Diffstat (limited to 'src/uicmd.cc')
-rw-r--r-- | src/uicmd.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/uicmd.cc b/src/uicmd.cc index ed72356e..6df03b9e 100644 --- a/src/uicmd.cc +++ b/src/uicmd.cc @@ -469,6 +469,15 @@ void a_UIcmd_image_popup(void *vbw, const DilloUrl *url, DilloUrl *link_url) } /* + * Copy url string to paste buffer + */ +void a_UIcmd_copy_urlstr(BrowserWindow *bw, const char *urlstr) +{ + Layout *layout = (Layout*)bw->render_layout; + layout->copySelection(urlstr); +} + +/* * Show a text window with the URL's source */ void a_UIcmd_view_page_source(const DilloUrl *url) |