Changeset ff3abc687af60525ce4f50091139c4a4d692dcbe
- Timestamp:
- 01/06/07 23:38:05 (6 years ago)
- Author:
- Philipp Kern <phil@…>
- Parents:
- b76103435c670e8981ac04779574179fc49ed10c
- Children:
- ae85f6ebfe9c236402d785748ef4633cc540bfdd
- git-committer:
- Philipp Kern <phil@0x539.de> / 2007-01-06T22:38:05Z+0000
- Message:
-
[project @ Adjusted for net6's error code transmission (#16)]
Original author: Armin Burgmeier <armin@…>
Date: 2005-06-06 16:29:45+00:00
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r2f9e906
|
rff3abc6
|
|
| 23 | 23 | #include <gtkmm/paned.h> |
| 24 | 24 | #include <gtkmm/frame.h> |
| | 25 | #include <obby/error.hpp> |
| 25 | 26 | #include <obby/local_buffer.hpp> |
| 26 | 27 | #include "config.hpp" |
| … |
… |
|
| 67 | 68 | |
| 68 | 69 | // Obby signal handlers |
| 69 | | void on_obby_login_failed(const std::string& reason); |
| | 70 | void on_obby_login_failed(obby::login::error error); |
| 70 | 71 | void on_obby_close(); |
| 71 | 72 | void on_obby_sync(); |
-
|
rb761034
|
rff3abc6
|
|
| 445 | 445 | }*/ |
| 446 | 446 | |
| 447 | | void Gobby::Window::on_obby_login_failed(const std::string& reason) |
| 448 | | { |
| 449 | | display_error(reason); |
| | 447 | void Gobby::Window::on_obby_login_failed(obby::login::error error) |
| | 448 | { |
| | 449 | display_error(obby::login::errstring(error) ); |
| 450 | 450 | on_session_join(); |
| 451 | 451 | } |