hi,

You can see the following code from src of Wt, and you can find the
possibilities of wrong places :-)


void WContainerWidget::addWidget(WWidget *widget)
{
  if (widget->parent()) {
    if (widget->parent() != this) {
      wApp->log("warn")
    << "WContainerWidget::addWidget(): reparenting widget";
      widget->setParent(0);
    } else
      return;
  }

2009/7/30 Sabir <[email protected]>

> Hello ,
>
> I review a warning that "WContainerWidget::addWidget(): reparenting widget"
> . How to figure out where its having this problem.
> Its have a huge chunk of code .So its not easy to fugure out in which line
> its having this problem,.
> --
> With Regards,
> Sabi
> +91 9895365676
>
>
> Success is mostly in the attitude. “I always felt that my greatest asset
> was not my physical ability, it was my mental ability.”
>
>
> ------------------------------------------------------------------------------
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
> trial. Simplify your report design, integration and deployment - and focus
> on
> what you do best, core application coding. Discover what's new with
> Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> _______________________________________________
> witty-interest mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/witty-interest
>
>
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
witty-interest mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/witty-interest

Reply via email to