From db1a2ce037e54ec61854f5760eb5ff68c7f53e45 Mon Sep 17 00:00:00 2001 From: Sergey Naumov Date: Tue, 6 Sep 2016 17:42:55 +0300 Subject: [PATCH] connection::get_file_descriptor removed --- include/i3ipc++/ipc.hpp | 5 ----- src/ipc.cpp | 5 ----- 2 files changed, 10 deletions(-) diff --git a/include/i3ipc++/ipc.hpp b/include/i3ipc++/ipc.hpp index 8b38a25..72d4e99 100644 --- a/include/i3ipc++/ipc.hpp +++ b/include/i3ipc++/ipc.hpp @@ -276,11 +276,6 @@ public: */ int32_t get_event_socket_fd(); - /** - * @deprecated Use get_event_socket() instead - */ - int32_t get_file_descriptor(); - sigc::signal signal_workspace_event; ///< Workspace event signal sigc::signal signal_output_event; ///< Output event signal sigc::signal signal_mode_event; ///< Output mode event signal diff --git a/src/ipc.cpp b/src/ipc.cpp index 23a7ad6..6cc78db 100644 --- a/src/ipc.cpp +++ b/src/ipc.cpp @@ -475,9 +475,4 @@ int32_t connection::get_main_socket_fd() { return m_main_socket; } int32_t connection::get_event_socket_fd() { return m_event_socket; } -int32_t connection::get_file_descriptor() { - I3IPC_WARN("connection::get_file_descriptor() is DEPRECATED") - return m_event_socket; -} - }