summaryrefslogtreecommitdiff
path: root/games/boson/patches/patch-ac
blob: ec7c5ae98a622107553b1da70510618924f17e2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$NetBSD: patch-ac,v 1.1 2006/06/21 20:46:28 joerg Exp $

--- boson/bosoncanvas.cpp.orig	2006-06-21 17:58:06.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);
 }