summaryrefslogtreecommitdiffstats
path: root/src/dialogs
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-11-05 00:53:05 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-11-05 00:53:05 +0000
commit85fe5bbeea54de073bb86c0292f1d10cd4a46759 (patch)
treed4c98c33859b7cdfd6205713019f76db6bad2c62 /src/dialogs
parentBug 1519641 Win: Rearrange start menu entries (diff)
downloadinkscape-85fe5bbeea54de073bb86c0292f1d10cd4a46759.tar.gz
inkscape-85fe5bbeea54de073bb86c0292f1d10cd4a46759.zip
fix crash reported by Vladimir Savic
(bzr r1899)
Diffstat (limited to 'src/dialogs')
-rw-r--r--src/dialogs/sp-attribute-widget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs/sp-attribute-widget.cpp b/src/dialogs/sp-attribute-widget.cpp
index 9bc40e86c..1c450cff5 100644
--- a/src/dialogs/sp-attribute-widget.cpp
+++ b/src/dialogs/sp-attribute-widget.cpp
@@ -577,7 +577,7 @@ sp_attribute_table_set_object ( SPAttributeTable *spat,
spat->num_attr = num_attr;
spat->modified_connection = object->connectModified(sigc::bind<2>(sigc::ptr_fun(&sp_attribute_table_object_modified), spat));
- spat->modified_connection = object->connectRelease(sigc::bind<1>(sigc::ptr_fun(&sp_attribute_table_object_release), spat));
+ spat->release_connection = object->connectRelease(sigc::bind<1>(sigc::ptr_fun(&sp_attribute_table_object_release), spat));
/* Create table */
spat->table = gtk_table_new (num_attr, 2, FALSE);