diff options
Diffstat (limited to 'src/gui/connection.cpp')
-rw-r--r-- | src/gui/connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/connection.cpp b/src/gui/connection.cpp index bacc319e..baa1ea34 100644 --- a/src/gui/connection.cpp +++ b/src/gui/connection.cpp @@ -35,7 +35,7 @@ namespace { struct ConnectionActionListener : public gcn::ActionListener { - void action(const std::string& eventId, gcn::Widget* widget) { state = EXIT_STATE; } + void action(const gcn::ActionEvent &event) { state = EXIT_STATE; } } listener; } |