|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-04-22 17:54 UTC] commandcom at autograf dot pl
-: commandcom at o2 dot pl
+: commandcom at autograf dot pl
[2020-04-22 17:54 UTC] commandcom at autograf dot pl
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 17:00:02 2025 UTC |
Description: ------------ When calling method GtkToolbar::set_orientation() or GtkToolbar::get_orientation(), PHP throws fatal error Test script: --------------- <?php $window1 = new GtkWindow(); $window1->connect_simple('destroy', array('Gtk', 'main_quit')); $window1->set_size_request(100, 100); $toolbar1 = new GtkToolbar(); $toolbar1->set_orientation(Gtk::ORIENTATION_HORIZONTAL); $toolbar1->get_orientation(); $window1->add($toolbar1); $window1->show_all(); Gtk::main(); Expected result: ---------------- display window Actual result: -------------- PHP Fatal error: Call to undefined method GtkToolbar::set_orientation()