summaryrefslogtreecommitdiffstats
path: root/src/dialogs/object-attributes.cpp
diff options
context:
space:
mode:
authorKris De Gussem <kris.degussem@gmail.com>2011-12-30 10:59:19 +0000
committerKris <Kris.De.Gussem@hotmail.com>2011-12-30 10:59:19 +0000
commit3f85163d6c6ce18cebab214ad86cc06956e1866e (patch)
treefd392227db640ff4e6f7a01a94b2d3744d3d4ef9 /src/dialogs/object-attributes.cpp
parentcleanup includes (diff)
downloadinkscape-3f85163d6c6ce18cebab214ad86cc06956e1866e.tar.gz
inkscape-3f85163d6c6ce18cebab214ad86cc06956e1866e.zip
C++ification of item properties dialog
(bzr r10805)
Diffstat (limited to 'src/dialogs/object-attributes.cpp')
-rw-r--r--src/dialogs/object-attributes.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dialogs/object-attributes.cpp b/src/dialogs/object-attributes.cpp
index 0511ebb3a..b4b2fe256 100644
--- a/src/dialogs/object-attributes.cpp
+++ b/src/dialogs/object-attributes.cpp
@@ -95,9 +95,8 @@ static void sp_object_attr_show_dialog ( SPObject *object,
}
window = Inkscape::UI::window_new (title.c_str(), true);
- t = new SPAttributeTable (object, labels, attrs, (GtkWidget*)window->gobj());
- t->show();
- window->show();
+ t = new SPAttributeTable (object, labels, attrs, NULL);
+ window->show_all();
} // end of sp_object_attr_show_dialog()