mirror of
https://github.com/php/php-gtk-src.git
synced 2026-04-28 11:33:20 +02:00
Allow specification of function entry flags for each override.
This commit is contained in:
@@ -81,9 +81,10 @@ class Overrides {
|
||||
else
|
||||
$func_name = $func_cname;
|
||||
if (isset($words[2]))
|
||||
$this->extra_methods[$words[2]][$func_cname] = array($func_name, $rest);
|
||||
$flags = $words[2];
|
||||
else
|
||||
$this->overrides[$func_cname] = array($func_name, $rest);
|
||||
$flags = null;
|
||||
$this->overrides[$func_cname] = array($func_name, $rest, $flags);
|
||||
break;
|
||||
|
||||
case 'getprop':
|
||||
|
||||
Reference in New Issue
Block a user