Change file names and classes names to match them

This commit is contained in:
thalieht
2018-06-14 12:54:23 +03:00
parent 0433d5f074
commit d34ddb2e3c
86 changed files with 842 additions and 819 deletions

View File

@@ -43,8 +43,8 @@ class QStandardItemModel;
class MainWindow;
class TransferListDelegate;
class TransferListModel;
class TransferListSortModel;
class TorrentModel;
class TransferListWidget : public QTreeView
{
@@ -53,7 +53,7 @@ class TransferListWidget : public QTreeView
public:
TransferListWidget(QWidget *parent, MainWindow *mainWindow);
~TransferListWidget();
TorrentModel *getSourceModel() const;
TransferListModel *getSourceModel() const;
public slots:
void setSelectionCategory(QString category);
@@ -125,7 +125,7 @@ private:
void applyToSelectedTorrents(const std::function<void (BitTorrent::TorrentHandle *const)> &fn);
TransferListDelegate *m_listDelegate;
TorrentModel *m_listModel;
TransferListModel *m_listModel;
TransferListSortModel *m_sortFilterModel;
MainWindow *m_mainWindow;
QShortcut *m_editHotkey;