mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 06:57:24 -06:00
Minor code optimization
This commit is contained in:
@@ -95,7 +95,7 @@ using namespace libtorrent;
|
|||||||
*****************************************************/
|
*****************************************************/
|
||||||
|
|
||||||
// Constructor
|
// Constructor
|
||||||
MainWindow::MainWindow(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), m_posInitialized(false), force_exit(false) {
|
MainWindow::MainWindow(QWidget *parent, const QStringList& torrentCmdLine) : QMainWindow(parent), m_posInitialized(false), force_exit(false) {
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
|
||||||
Preferences pref;
|
Preferences pref;
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ class MainWindow : public QMainWindow, private Ui::MainWindow{
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
// Construct / Destruct
|
// Construct / Destruct
|
||||||
MainWindow(QWidget *parent=0, QStringList torrentCmdLine=QStringList());
|
MainWindow(QWidget *parent=0, const QStringList& torrentCmdLine = QStringList());
|
||||||
~MainWindow();
|
~MainWindow();
|
||||||
// Methods
|
// Methods
|
||||||
QWidget* getCurrentTabWidget() const;
|
QWidget* getCurrentTabWidget() const;
|
||||||
|
|||||||
Reference in New Issue
Block a user