diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-01-30 07:20:47 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-30 07:20:47 +0800 |
commit | c1008f8781b7940bb7096bc6e5fe250ec6ebcaf2 (patch) | |
tree | 73461aa9c690a3fc83c05e8b2df5d768c64b269a /lib/ephy-dnd.h | |
parent | dff9e866bb4f2fc18074d5c638733ee860746f9b (diff) | |
download | gsoc2013-epiphany-c1008f8781b7940bb7096bc6e5fe250ec6ebcaf2.tar gsoc2013-epiphany-c1008f8781b7940bb7096bc6e5fe250ec6ebcaf2.tar.gz gsoc2013-epiphany-c1008f8781b7940bb7096bc6e5fe250ec6ebcaf2.tar.bz2 gsoc2013-epiphany-c1008f8781b7940bb7096bc6e5fe250ec6ebcaf2.tar.lz gsoc2013-epiphany-c1008f8781b7940bb7096bc6e5fe250ec6ebcaf2.tar.xz gsoc2013-epiphany-c1008f8781b7940bb7096bc6e5fe250ec6ebcaf2.tar.zst gsoc2013-epiphany-c1008f8781b7940bb7096bc6e5fe250ec6ebcaf2.zip |
Fix bookmarks/smart bookmarks add to the toolbars.
2003-01-30 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/ephy-dnd.c: (ephy_dnd_url_drag_source_set),
(ephy_dnd_enable_model_drag_source):
* lib/ephy-dnd.h:
* lib/widgets/ephy-editable-toolbar.c: (item_node_new),
(add_action), (parse_item_list), (toolbar_list_to_xml),
(drag_data_received_cb), (setup_toolbar_drag):
* src/toolbar.c: (toolbar_get_action):
Fix bookmarks/smart bookmarks add to the toolbars.
Diffstat (limited to 'lib/ephy-dnd.h')
-rw-r--r-- | lib/ephy-dnd.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/ephy-dnd.h b/lib/ephy-dnd.h index 87b6008d9..7d5281128 100644 --- a/lib/ephy-dnd.h +++ b/lib/ephy-dnd.h @@ -31,14 +31,12 @@ G_BEGIN_DECLS #define EPHY_DND_URI_LIST_TYPE "text/uri-list" #define EPHY_DND_TEXT_TYPE "text/plain" #define EPHY_DND_URL_TYPE "_NETSCAPE_URL" -#define EPHY_DND_EPHY_URL_TYPE "EPHY_URL" -#define EPHY_DND_EPHY_BOOKMARK_TYPE "EPHY_BOOKMARK" /* Standard Drag & Drop types. */ typedef enum { EPHY_DND_URI_LIST, - EPHY_DND_URL, EPHY_DND_TEXT, + EPHY_DND_URL } EphyIconDndTargetType; typedef void (* EphyDragEachSelectedItemDataGet) (const char *url, |