diff options
author | Daouda Lo <daouda@mandriva.com> | 2004-03-02 14:07:10 +0000 |
---|---|---|
committer | Daouda Lo <daouda@mandriva.com> | 2004-03-02 14:07:10 +0000 |
commit | 98f8132b92b8d7ab1cce1f9dee9b8e530d4b6199 (patch) | |
tree | 24602326b0d89f683a930c2ba8a29f955fc790f2 | |
parent | 03e52feadb296d8fc5d8a5ca2edf0d0ed340f778 (diff) | |
download | mgaonline-98f8132b92b8d7ab1cce1f9dee9b8e530d4b6199.tar mgaonline-98f8132b92b8d7ab1cce1f9dee9b8e530d4b6199.tar.gz mgaonline-98f8132b92b8d7ab1cce1f9dee9b8e530d4b6199.tar.bz2 mgaonline-98f8132b92b8d7ab1cce1f9dee9b8e530d4b6199.tar.xz mgaonline-98f8132b92b8d7ab1cce1f9dee9b8e530d4b6199.zip |
- avoid bareword
-rwxr-xr-x | mdkapplet | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -97,7 +97,7 @@ gtkadd(my $icon = Gtk2::TrayIcon->new("MdkApplet"), ); $eventbox->signal_connect(button_press_event => sub { if ($_[1]->button == 1) { - if (-e conffile) { showMainWindow() } else { configure } + if (-e conffile) { showMainWindow() } else { configure() } } $_[1]->button == 3 && $menu and $menu->popup(undef, undef, undef, undef, $_[1]->button, $_[1]->time); }); |