Index: C:/Documents and Settings/Omar/My Documents/NewfNov/InkScapeV2/src/ui/context-menu.cpp =================================================================== --- C:/Documents and Settings/Omar/My Documents/NewfNov/InkScapeV2/src/ui/context-menu.cpp (revision 14644) +++ C:/Documents and Settings/Omar/My Documents/NewfNov/InkScapeV2/src/ui/context-menu.cpp (working copy) @@ -217,7 +217,7 @@ /* SPAnchor */ -static void sp_anchor_link_properties(GtkMenuItem *menuitem, SPAnchor *anchor); +static void sp_anchor_link_attributes(GtkMenuItem *menuitem, SPAnchor *anchor); static void sp_anchor_link_follow(GtkMenuItem *menuitem, SPAnchor *anchor); static void sp_anchor_link_remove(GtkMenuItem *menuitem, SPAnchor *anchor); @@ -230,15 +230,17 @@ item = (SPItem *) object; /* Link dialog */ - w = gtk_menu_item_new_with_mnemonic(_("Link _Properties")); + w = gtk_menu_item_new_with_mnemonic(_("Link _attributes")); gtk_object_set_data(GTK_OBJECT(w), "desktop", desktop); - gtk_signal_connect(GTK_OBJECT(w), "activate", GTK_SIGNAL_FUNC(sp_anchor_link_properties), item); + gtk_signal_connect(GTK_OBJECT(w), "activate", GTK_SIGNAL_FUNC(sp_anchor_link_attributes), item); gtk_widget_show(w); gtk_menu_append(GTK_MENU(m), w); /* Separator */ - w = gtk_menu_item_new(); - gtk_widget_show(w); - gtk_menu_append(GTK_MENU(m), w); /* Select item */ w = gtk_menu_item_new_with_mnemonic(_("_Follow Link")); gtk_signal_connect(GTK_OBJECT(w), "activate", GTK_SIGNAL_FUNC(sp_anchor_link_follow), item); @@ -253,7 +255,7 @@ } static void -sp_anchor_link_properties(GtkMenuItem *menuitem, SPAnchor *anchor) +sp_anchor_link_attributes(GtkMenuItem *menuitem, SPAnchor *anchor) { sp_object_attributes_dialog(SP_OBJECT(anchor), "Link"); }