summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2006-03-29 03:18:33 +0000
committerjoncruz <joncruz@users.sourceforge.net>2006-03-29 03:18:33 +0000
commit93e25a913d7a76d9a3aed1b62e5ff263d75d6f4d (patch)
tree55193b4bee32f76c59aeb06d47a89c2c98ead9a2 /src
parentcrap, disable the layer manager in the build; I forgot to deal with those tem... (diff)
downloadinkscape-93e25a913d7a76d9a3aed1b62e5ff263d75d6f4d.tar.gz
inkscape-93e25a913d7a76d9a3aed1b62e5ff263d75d6f4d.zip
Renaming temp non-standard attributes
(bzr r330)
Diffstat (limited to 'src')
-rw-r--r--src/dialogs/swatches.cpp4
-rw-r--r--src/interface.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/dialogs/swatches.cpp b/src/dialogs/swatches.cpp
index 8d81c3b99..ab4fa35ad 100644
--- a/src/dialogs/swatches.cpp
+++ b/src/dialogs/swatches.cpp
@@ -300,7 +300,7 @@ static bool bruteForce( SPDocument* document, Inkscape::XML::Node* node, Glib::u
bool changed = false;
if ( node ) {
- gchar const * val = node->attribute("HOTFill");
+ gchar const * val = node->attribute("inkscape:x-fill-tag");
if ( val && (match == val) ) {
SPObject *obj = document->getObjectByRepr( node );
@@ -315,7 +315,7 @@ static bool bruteForce( SPDocument* document, Inkscape::XML::Node* node, Glib::u
changed = true;
}
- val = node->attribute("HOTStroke");
+ val = node->attribute("inkscape:x-stroke-tag");
if ( val && (match == val) ) {
SPObject *obj = document->getObjectByRepr( node );
diff --git a/src/interface.cpp b/src/interface.cpp
index c913d1122..3ff25c8fb 100644
--- a/src/interface.cpp
+++ b/src/interface.cpp
@@ -1023,7 +1023,7 @@ sp_ui_drag_data_received(GtkWidget *widget,
str = 0;
sp_object_setAttribute( SP_OBJECT(item),
- (drag_context->action != GDK_ACTION_MOVE) ? "HOTFill":"HOTStroke",
+ (drag_context->action != GDK_ACTION_MOVE) ? "inkscape:x-fill-tag":"inkscape:x-stroke-tag",
palName.c_str(),
false );
item->updateRepr();