com gtk/php-gtk: Bug fixed: test/bug_gtknotebook_switchpage .phpw

[email protected] (David Soria Parra) Thu, 20 Oct 2005 04:27:23 +0000
Newsgroups php.gtk.cvs
Message-ID <[email protected]>
Commit:    af201b9c414ae73393278307f6e759baa5db590b
Author:    Christian Weiske <[email protected]>         Thu, 20 Oct 2005 04:27:23 +0000
Parents:   1e851f2a688da4155040bfa11bc6cbf64162e5b9
Branches:  master

Link:       http://git.php.net/?p=gtk/php-gtk.git;a=commitdiff;h=af201b9c414ae73393278307f6e759baa5db590b

Log:
Bug fixed

Changed paths:
  M  test/bug_gtknotebook_switchpage.phpw


Diff:
af201b9c414ae73393278307f6e759baa5db590b
diff --git a/test/bug_gtknotebook_switchpage.phpw b/test/bug_gtknotebook_switchpage.phpw
index 63c57aa..002d388 100644
--- a/test/bug_gtknotebook_switchpage.phpw
+++ b/test/bug_gtknotebook_switchpage.phpw
@@ -1,5 +1,8 @@
 <?php
 /**
+*   FIXED by Andrei (?) on 2005-10-01
+*   Problem reason: GPointer wasn't implemented
+*
 *   Problem: When the switch-page signal is emitted,
 *   a gpointer is needed - but that's not defined
 */
@@ -21,7 +24,7 @@ class Notebooktest extends GtkWindow
     }
     
     function onSwitchNotebookPage(GtkNotebook $notebook) {
-//        echo 'switch' . "\r\n";
+        echo 'switch' . "\r\n";
     }
 }