From eba05095970a9ee1de53703f5533efbbfbf91715 Mon Sep 17 00:00:00 2001 From: Bryce Harrington Date: Tue, 24 Sep 2013 11:31:44 -0700 Subject: Fix my email address through codebase (bzr r12588) --- src/widgets/spw-utilities.cpp | 2 +- src/widgets/spw-utilities.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/widgets') diff --git a/src/widgets/spw-utilities.cpp b/src/widgets/spw-utilities.cpp index d0a3ed1c5..9c0c8d7c6 100644 --- a/src/widgets/spw-utilities.cpp +++ b/src/widgets/spw-utilities.cpp @@ -2,7 +2,7 @@ * Inkscape Widget Utilities * * Authors: - * Bryce W. Harrington + * Bryce W. Harrington * bulia byak * * Copyright (C) 2003 Bryce W. Harrington diff --git a/src/widgets/spw-utilities.h b/src/widgets/spw-utilities.h index d52cbd888..31f29e026 100644 --- a/src/widgets/spw-utilities.h +++ b/src/widgets/spw-utilities.h @@ -5,7 +5,7 @@ * Inkscape Widget Utilities * * Author: - * Bryce W. Harrington + * Bryce W. Harrington * * Copyright (C) 2003 Bryce Harrington * -- cgit v1.2.3 From 96190a607cf8edbcb8d4d2f88f0e451cf6abfa83 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Wed, 25 Sep 2013 23:51:52 +0200 Subject: C++ify calling a few SPLPEItem functions, much more work than expected... slowly slowly... (bzr r12593) --- src/widgets/node-toolbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/widgets') diff --git a/src/widgets/node-toolbar.cpp b/src/widgets/node-toolbar.cpp index c3e5b22ce..2348acc46 100644 --- a/src/widgets/node-toolbar.cpp +++ b/src/widgets/node-toolbar.cpp @@ -317,7 +317,7 @@ static void sp_node_toolbox_sel_changed(Inkscape::Selection *selection, GObject GtkAction* w = GTK_ACTION( g_object_get_data( tbl, "nodes_lpeedit" ) ); SPItem *item = selection->singleItem(); if (item && SP_IS_LPE_ITEM(item)) { - if (sp_lpe_item_has_path_effect(SP_LPE_ITEM(item))) { + if (SP_LPE_ITEM(item)->hasPathEffect()) { gtk_action_set_sensitive(w, TRUE); } else { gtk_action_set_sensitive(w, FALSE); -- cgit v1.2.3