mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 01:03:08 -07:00
- Replace QMap by QHash for faster lookups
This commit is contained in:
parent
d16dd52841
commit
b54c4ae028
2 changed files with 6 additions and 6 deletions
|
@ -23,7 +23,7 @@
|
|||
#define GUI_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QMap>
|
||||
#include <QHash>
|
||||
#include <QProcess>
|
||||
#include <QTcpServer>
|
||||
#include <QTcpSocket>
|
||||
|
@ -63,10 +63,10 @@ class GUI : public QMainWindow, private Ui::MainWindow{
|
|||
// Bittorrent
|
||||
session *s;
|
||||
std::pair<unsigned short, unsigned short> listenPorts;
|
||||
QMap<QString, torrent_handle> handles;
|
||||
QHash<QString, torrent_handle> handles;
|
||||
QTimer *checkConnect;
|
||||
QTimer *timerScan;
|
||||
QMap<QString, QStringList> trackerErrors;
|
||||
QHash<QString, QStringList> trackerErrors;
|
||||
trackerLogin *tracker_login;
|
||||
QList<QPair<torrent_handle,std::string> > unauthenticated_trackers;
|
||||
downloadThread *downloader;
|
||||
|
@ -90,7 +90,7 @@ class GUI : public QMainWindow, private Ui::MainWindow{
|
|||
previewSelect *previewSelection;
|
||||
QProcess *previewProcess;
|
||||
// Search related
|
||||
QMap<QString, QString> searchResultsUrls;
|
||||
QHash<QString, QString> searchResultsUrls;
|
||||
QProcess *searchProcess;
|
||||
bool search_stopped;
|
||||
bool no_search_results;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue