Make the find_widget calls explicit.

This commit is contained in:
Mark de Wever 2008-12-25 18:08:51 +00:00
parent efe242a637
commit 73d9d22687

View file

@ -558,6 +558,20 @@ public:
}
}
/** Inherited from tgenerator_. */
twidget* find_widget(
const tpoint& coordinate, const bool must_be_active)
{
return placement::find_widget(coordinate, must_be_active);
}
/** Inherited from tgenerator_. */
const twidget* find_widget(
const tpoint& coordinate, const bool must_be_active) const
{
return placement::find_widget(coordinate, must_be_active);
}
protected:
/** Inherited from tgenerator_. */