Jump to content

[SOLVED] Warning Error Help


The Little Guy

Recommended Posts

OK, this is my first ever OOP script... When I run it through the command line, I get this error:

 

PHP Warning:  GtkArrow::__construct() requires exactly 2 arguments, 0 given in c:\ryan\hello.php on line 11

 

Warning: GtkArrow::__construct() requires exactly 2 arguments, 0 given in c:\ryan\hello.php on line 11

PHP Fatal error:  Uncaught exception 'PhpGtkConstructException' with message 'could not construct GtkArrow object' in c:\ryan\hello.php:11

Stack trace:

#0 c:\ryan\hello.php(11): GtkArrow->__construct()

#1 c:\ryan\hello.php(17): Hello->__construct()

#2 {main}

  thrown in c:\ryan\hello.php on line 11

 

Fatal error: Uncaught exception 'PhpGtkConstructException' with message 'could not construct GtkArrow object' in c:\ryan\hello.php:11

Stack trace:

#0 c:\ryan\hello.php(11): GtkArrow->__construct()

#1 c:\ryan\hello.php(17): Hello->__construct()

#2 {main}

  thrown in c:\ryan\hello.php on line 11

 

<?php

class Hello extends GtkWindow
{
    function __construct()
    {
        parent::__construct();
        $this->set_title('Arrow');
        $this->connect_simple('destroy', array('gtk', 'main_quit'));

        $arrow = new GtkArrow();
//$arrow->set(0,2);
        $this->show_all();
    }
}

new Hello();
Gtk::main();

?>

 

 

What does that mean?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.