boost::trackable confusion

2003-06-04 Thread Angus Leeming
 #warning I have zero idea about the trackable()
 InsetGraphics::InsetGraphics(InsetGraphics const  ig)
: Inset(ig),
- boost::signals::trackable(ig),
+ boost::signals::trackable(),
  graphic_label(uniqueID()),
  cache_(new Cache(*this))
{
setParams(ig.params());
}


Fortunately, I do ;-)

trackable is tracking the existence of this instance of the class, or will 
do once a signal is connected to return to it.

There has been no attempt yet to connect a signal from the GraphicsLoader to 
this-statusChanged() so there is no need for trackable to track anything 
yet.

Make sense now?

(I'll fix it.)

-- 
Angus



Re: boost::trackable confusion

2003-06-04 Thread John Levon
On Tue, Jun 03, 2003 at 04:34:24PM +, Angus Leeming wrote:

 There has been no attempt yet to connect a signal from the GraphicsLoader to 
 this-statusChanged() so there is no need for trackable to track anything 
 yet.
 
 Make sense now?
 
 (I'll fix it.)

OK, thanks a lot Angus

regards
john


boost::trackable confusion

2003-06-04 Thread Angus Leeming
 #warning I have zero idea about the trackable()
 InsetGraphics::InsetGraphics(InsetGraphics const & ig)
: Inset(ig),
- boost::signals::trackable(ig),
+ boost::signals::trackable(),
  graphic_label(uniqueID()),
  cache_(new Cache(*this))
{
setParams(ig.params());
}


Fortunately, I do ;-)

trackable is tracking the existence of this instance of the class, or will 
do once a signal is connected to return to it.

There has been no attempt yet to connect a signal from the GraphicsLoader to 
this->statusChanged() so there is no need for trackable to track anything 
yet.

Make sense now?

(I'll fix it.)

-- 
Angus



Re: boost::trackable confusion

2003-06-04 Thread John Levon
On Tue, Jun 03, 2003 at 04:34:24PM +, Angus Leeming wrote:

> There has been no attempt yet to connect a signal from the GraphicsLoader to 
> this->statusChanged() so there is no need for trackable to track anything 
> yet.
> 
> Make sense now?
> 
> (I'll fix it.)

OK, thanks a lot Angus

regards
john