19 lines
476 B
Text
19 lines
476 B
Text
$NetBSD: patch-ac,v 1.2 2011/12/20 10:35:03 wiz Exp $
|
|
|
|
--- boson/bosoncanvas.cpp.orig 2003-03-29 11:42:02.000000000 +0000
|
|
+++ boson/bosoncanvas.cpp
|
|
@@ -911,12 +911,12 @@ unsigned int BosonCanvas::allItemsCount(
|
|
|
|
void BosonCanvas::addItem(BosonItem* item)
|
|
{
|
|
- d->mAllItems.append(item);
|
|
+ d->mAllItems.appendItem(item);
|
|
}
|
|
|
|
void BosonCanvas::removeItem(BosonItem* item)
|
|
{
|
|
- d->mAllItems.remove(item);
|
|
+ d->mAllItems.removeItem(item);
|
|
emit signalRemovedItem(item);
|
|
}
|
|
|