mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 09:13:08 -07:00
- Updated tranlsations
- Allow to run one instance of qBittorrent per user - Moved button to close search tabs
This commit is contained in:
parent
2dee67edbd
commit
8dfc68e196
37 changed files with 1723 additions and 1535 deletions
16
src/GUI.h
16
src/GUI.h
|
@ -35,8 +35,13 @@ class DownloadingTorrents;
|
|||
class FinishedTorrents;
|
||||
class downloadFromURL;
|
||||
class SearchEngine;
|
||||
class QTcpServer;
|
||||
class QTcpSocket;
|
||||
#ifdef QT_4_4
|
||||
class QLocalServer;
|
||||
class QLocalSocket;
|
||||
#else
|
||||
class QTcpServer;
|
||||
class QTcpSocket;
|
||||
#endif
|
||||
class QCloseEvent;
|
||||
class RSSImp;
|
||||
class QShortcut;
|
||||
|
@ -83,8 +88,13 @@ class GUI : public QMainWindow, private Ui::MainWindow{
|
|||
// Web UI
|
||||
HttpServer *httpServer;
|
||||
// Misc
|
||||
QTcpServer *tcpServer;
|
||||
#ifdef QT_4_4
|
||||
QLocalServer *localServer;
|
||||
QLocalSocket *clientConnection;
|
||||
#else
|
||||
QTcpServer *localServer;
|
||||
QTcpSocket *clientConnection;
|
||||
#endif
|
||||
|
||||
protected slots:
|
||||
// GUI related slots
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue