Changeset 7780ba686 in mythtv
- Timestamp:
- Mar 2, 2013, 2:42:25 AM (11 years ago)
- Branches:
- devel/2020-player, devel/ffmpeg-resync, fixes/0.27, fixes/0.28, fixes/29, fixes/30, fixes/31, github-templates, master
- Children:
- aa58b17580
- Parents:
- d5cc7a1c7
- Location:
- mythtv/libs
- Files:
-
- 2 edited
-
libmythbase/serverpool.cpp (modified) (1 diff)
-
libmythprotoserver/mythsocketmanager.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mythtv/libs/libmythbase/serverpool.cpp
rd5cc7a1c7 r7780ba686 391 391 this, &ServerPool::newTcpConnection); 392 392 #else 393 connect(server, SIGNAL(newConnection( int)),394 this, SLOT(newTcpConnection( int)));393 connect(server, SIGNAL(newConnection(qt_socket_fd_t)), 394 this, SLOT(newTcpConnection(qt_socket_fd_t))); 395 395 #endif 396 396 if (server->listen(*it, m_port)) -
mythtv/libs/libmythprotoserver/mythsocketmanager.cpp
rd5cc7a1c7 r7780ba686 102 102 this, &MythSocketManager::newConnection); 103 103 #else 104 connect(m_server, SIGNAL(newConnection( int)),105 this, SLOT(newConnection( int)));104 connect(m_server, SIGNAL(newConnection(qt_socket_fd_t)), 105 this, SLOT(newConnection(qt_socket_fd_t))); 106 106 #endif 107 107 return true;
Note: See TracChangeset
for help on using the changeset viewer.
