|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-02-01 07:16 UTC] cweiske@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 19:00:01 2025 UTC |
Description: ------------ GtkColorButton::get_color() requires exactly 1 argument, 0 given I think it's wrong. It expects a GdkColor object as parameter (by reference). Reproduce code: --------------- <?php $colorbutton = new GtkColorButton; $colorbutton->set_color(GdkColor::parse('#00FF00')); $colorbutton->get_color(); ?> Expected result: ---------------- it should return the selected color. Actual result: -------------- warning: GtkColorButton::get_color() requires exactly 1 argument, 0 given