diff options
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r-- | perl-install/ugtk2.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index 85e54b262..a0266023e 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -471,8 +471,8 @@ sub create_menu { sub create_notebook { my $book = Gtk2::Notebook->new; while (@_) { - my ($title, $page) = splice(@_, 0, 2); - gtkappend_page($book, $title, $page); + my ($page, $title) = splice(@_, 0, 2); + gtkappend_page($book, $page, $title); } $book } |