diff options
-rw-r--r-- | gui_callbacks.pm | 12 | ||||
-rw-r--r-- | rhimport.glade | 4 | ||||
-rw-r--r-- | rhimport.pm | 10 |
3 files changed, 13 insertions, 13 deletions
diff --git a/gui_callbacks.pm b/gui_callbacks.pm index 5675000..05b6adf 100644 --- a/gui_callbacks.pm +++ b/gui_callbacks.pm @@ -1,24 +1,24 @@ #!/usr/bin/perl -w # # -# rhdropbox +# rhimport # # Copyright (C) 2009 Christian Pointner <equinox@helsinki.at> # -# This file is part of rhdropbox. +# This file is part of rhimport. # -# rhdropbox is free software: you can redistribute it and/or modify +# rhimport is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # any later version. # -# rhdropbox is distributed in the hope that it will be useful, +# rhimport is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with rhdropbox. If not, see <http://www.gnu.org/licenses/>. +# along with rhimport. If not, see <http://www.gnu.org/licenses/>. # use strict; @@ -32,7 +32,7 @@ sub on_exit Gtk2->main_quit; } -sub on_b_ok_clicked +sub on_b_apply_clicked { my ($widget, $data) = @_; diff --git a/rhimport.glade b/rhimport.glade index c1283d4..9699d2c 100644 --- a/rhimport.glade +++ b/rhimport.glade @@ -121,14 +121,14 @@ </packing> </child> <child> - <widget class="GtkButton" id="b_ok"> + <widget class="GtkButton" id="b_apply"> <property name="label">gtk-apply</property> <property name="width_request">130</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">True</property> <property name="use_stock">True</property> - <signal name="clicked" handler="on_b_ok_clicked"/> + <signal name="clicked" handler="on_b_apply_clicked"/> </widget> <packing> <property name="expand">False</property> diff --git a/rhimport.pm b/rhimport.pm index eda2d79..064a8ad 100644 --- a/rhimport.pm +++ b/rhimport.pm @@ -1,24 +1,24 @@ #!/usr/bin/perl -w # # -# rhdropbox +# rhimport # # Copyright (C) 2009 Christian Pointner <equinox@helsinki.at> # -# This file is part of rhdropbox. +# This file is part of rhimport. # -# rhdropbox is free software: you can redistribute it and/or modify +# rhimport is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # any later version. # -# rhdropbox is distributed in the hope that it will be useful, +# rhimport is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with rhdropbox. If not, see <http://www.gnu.org/licenses/>. +# along with rhimport. If not, see <http://www.gnu.org/licenses/>. # use strict; |