Make the find_widget calls explicit.
This commit is contained in:
parent
efe242a637
commit
73d9d22687
1 changed files with 14 additions and 0 deletions
|
@ -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_. */
|
||||
|
|
Loading…
Add table
Reference in a new issue