summaryrefslogtreecommitdiffstats
path: root/src/ui
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-08-09 23:23:12 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-08-09 23:23:12 +0000
commit0b5ad417538a7ed72b2e88b97dfc2cfc7ba8f49e (patch)
tree49d60b565305080f7c0fe5dbfcd0dbf54d501bbd /src/ui
parentmerge silveiro's and my changes (diff)
downloadinkscape-0b5ad417538a7ed72b2e88b97dfc2cfc7ba8f49e.tar.gz
inkscape-0b5ad417538a7ed72b2e88b97dfc2cfc7ba8f49e.zip
gtkmm-ify the 'Stroke style' tab of Fill and Stroke dialog
(bzr r6602)
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/dialog/fill-and-stroke.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/dialog/fill-and-stroke.cpp b/src/ui/dialog/fill-and-stroke.cpp
index 8b5f63449..50b2a5c79 100644
--- a/src/ui/dialog/fill-and-stroke.cpp
+++ b/src/ui/dialog/fill-and-stroke.cpp
@@ -87,7 +87,9 @@ FillAndStroke::_layoutPageStrokePaint()
void
FillAndStroke::_layoutPageStrokeStyle()
{
- Gtk::Widget *ssl = manage(Glib::wrap(sp_stroke_style_line_widget_new()));
+ //Gtk::Widget *ssl = manage(Glib::wrap(sp_stroke_style_line_widget_new()));
+ //Gtk::Widget *ssl = static_cast<Gtk::Widget *>(sp_stroke_style_line_widget_new());
+ Gtk::Widget *ssl = sp_stroke_style_line_widget_new();
_page_stroke_style.table().attach(*ssl, 0, 1, 0, 1);
}