diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2012-06-09 13:54:29 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2012-06-09 13:54:29 +0000 |
| commit | 917c026dbb0810c7614df785c86066079937b723 (patch) | |
| tree | df7a4a357c7483216c7d805406bd79ff3c21c7c1 /src/seltrans.cpp | |
| parent | Move measure angle string to keep it visible when angle is small. (diff) | |
| parent | Stop deriving SPCanvasItem from GtkObject (diff) | |
| download | inkscape-917c026dbb0810c7614df785c86066079937b723.tar.gz inkscape-917c026dbb0810c7614df785c86066079937b723.zip | |
Refactor SPCanvasItem to no longer derive from GtkObject
(bzr r11470)
Diffstat (limited to 'src/seltrans.cpp')
| -rw-r--r-- | src/seltrans.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/seltrans.cpp b/src/seltrans.cpp index 4b0ef284b..88a4a536d 100644 --- a/src/seltrans.cpp +++ b/src/seltrans.cpp @@ -196,16 +196,16 @@ Inkscape::SelTrans::~SelTrans() } if (_norm) { - gtk_object_destroy(GTK_OBJECT(_norm)); + sp_canvas_item_destroy(_norm); _norm = NULL; } if (_grip) { - gtk_object_destroy(GTK_OBJECT(_grip)); + sp_canvas_item_destroy(_grip); _grip = NULL; } for (int i = 0; i < 4; i++) { if (_l[i]) { - gtk_object_destroy(_l[i]); + sp_canvas_item_destroy(_l[i]); _l[i] = NULL; } } |
