diff options
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; } } |
