|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-11-01 23:13 UTC] auroraeosrose@php.net
[2006-11-02 00:26 UTC] sfox@php.net
[2008-03-16 15:14 UTC] auroraeosrose@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 11:00:02 2025 UTC |
Description: ------------ GKT Version: 2 PHP Version: 5.1.4 (5.1.6 was the only 5.1.x listed) GtkAboutDialog::set_website_label() does not render any results. It doesn't generate any noticable errors either. It just doesn't do anything. Oddly enough though, GtkAboutDialog::set_website() works just fine. I have tried several implementations/uses of the method with no luck. ******************************************************* $gktAboutDialog->set_website_label("text"); //NO LUCK $gktAboutDialog->set_website_label($str); //NO LUCK GtkAboutDialog::set_website_label() //NOT STATIC METHOD ******************************************************** As far as I can see, the manual makes no mention of depreciation or not having been implemented yet. Thanks for looking into it, -Ryan Reproduce code: --------------- <?php //GTK CLASS CHECK if (!class_exists("gtk")) { die("The PHP-GTK class was not detected and therefore this file cannot continue"); } /****************************************/ $artists = array("Artist"); $authors = array("Developer"); $title = "Application Information"; $name = "Applcation Name"; $comments = "These are the comments"; $copyright = "Copyright " . date("Y") . "? All Rights Reserved"; $license = "This is the license"; $version = "1.0.0.0"; $website = "http://www.website.com"; $websitelabel = "Web Site Text"; /**************************************/ $about = new gtkAboutDialog(); $about->set_artists($artists); $about->set_authors($authors); $about->set_comments($comments); $about->set_copyright($copyright); $about->set_license($license); $about->set_name($name); $about->set_version($version); $about->set_website_label($websitelabel); $about->set_website($website); $about->set_title($title); $about->connect('destroy', 'main_quit'); $about->run(); gtk::main(); ?> Expected result: ---------------- I expect to see the literal of the data I provided to the GtkAboutDialog::set_website_label() method Actual result: -------------- I see nothing generated from the GtkAboutDialog::set_website_label() method. No errors are generated (I am using E_ALL)