diff options
author | Xan Lopez <xan@src.gnome.org> | 2003-07-17 21:20:10 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2003-07-17 21:20:10 +0800 |
commit | e8fbf999bcd5cc7bb8bf4e2b25885869a744ca43 (patch) | |
tree | d71c8ae37d29a5c2235e97bbb49872b02d6b8962 /src/ephy-tab.c | |
parent | 3212871bff4999162a67e32c86990821e8c995ed (diff) | |
download | gsoc2013-epiphany-e8fbf999bcd5cc7bb8bf4e2b25885869a744ca43.tar.gz gsoc2013-epiphany-e8fbf999bcd5cc7bb8bf4e2b25885869a744ca43.tar.zst gsoc2013-epiphany-e8fbf999bcd5cc7bb8bf4e2b25885869a744ca43.zip |
Allow DND of URLs (from links or favicons or other apps...) to the
Allow DND of URLs (from links or favicons or other apps...) to the
bookmarks toolbar, fixes #116613 (HOORAY), thanks to marco and
chpe for the help.
Diffstat (limited to 'src/ephy-tab.c')
-rw-r--r-- | src/ephy-tab.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 5d2056dcd..270fd6cb3 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -14,6 +14,8 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ */ #ifdef HAVE_CONFIG_H @@ -136,8 +138,8 @@ ephy_tab_get_type (void) }; ephy_tab_type = g_type_register_static (G_TYPE_OBJECT, - "EphyTab", - &our_info, 0); + "EphyTab", + &our_info, 0); } return ephy_tab_type; @@ -820,7 +822,7 @@ ephy_tab_destroy_brsr_cb (EphyEmbed *embed, EphyTab *tab) static gint ephy_tab_open_uri_cb (EphyEmbed *embed, const char *uri, - EphyTab *tab) + EphyTab *tab) { LOG ("ephy_tab_open_uri_cb %s", uri) |