From b0d8a31a2e41c70869af950d513bf1af75a7ec3c Mon Sep 17 00:00:00 2001 From: Zach H Date: Sun, 4 Jun 2017 13:57:21 -0400 Subject: [PATCH] remove invalid connect (#2753) --- cockatrice/src/tab_supervisor.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/cockatrice/src/tab_supervisor.cpp b/cockatrice/src/tab_supervisor.cpp index c53f4eea..4a64bd89 100644 --- a/cockatrice/src/tab_supervisor.cpp +++ b/cockatrice/src/tab_supervisor.cpp @@ -383,7 +383,6 @@ void TabSupervisor::addRoomTab(const ServerInfo_Room &info, bool setCurrent) connect(tab, SIGNAL(maximizeClient()), this, SLOT(maximizeMainWindow())); connect(tab, SIGNAL(roomClosing(TabRoom *)), this, SLOT(roomLeft(TabRoom *))); connect(tab, SIGNAL(openMessageDialog(const QString &, bool)), this, SLOT(addMessageTab(const QString &, bool))); - connect(tab, SIGNAL(notIdle()), this, SLOT(resetIdleTimer())); int tabIndex = myAddTab(tab); addCloseButtonToTab(tab, tabIndex); roomTabs.insert(info.room_id(), tab);