mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-05 07:02:31 -06:00
Initialize pointer to a default value
This commit is contained in:
@@ -112,18 +112,18 @@ private:
|
||||
void openParentFolder(const QModelIndex &index) const;
|
||||
Path getFullPath(const QModelIndex &index) const;
|
||||
|
||||
Ui::PropertiesWidget *m_ui;
|
||||
BitTorrent::Torrent *m_torrent;
|
||||
Ui::PropertiesWidget *m_ui = nullptr;
|
||||
BitTorrent::Torrent *m_torrent = nullptr;
|
||||
SlideState m_state;
|
||||
TorrentContentFilterModel *m_propListModel;
|
||||
PropListDelegate *m_propListDelegate;
|
||||
PeerListWidget *m_peerList;
|
||||
TrackerListWidget *m_trackerList;
|
||||
TorrentContentFilterModel *m_propListModel = nullptr;
|
||||
PropListDelegate *m_propListDelegate = nullptr;
|
||||
PeerListWidget *m_peerList = nullptr;
|
||||
TrackerListWidget *m_trackerList = nullptr;
|
||||
QWidget *m_speedWidget = nullptr;
|
||||
QList<int> m_slideSizes;
|
||||
DownloadedPiecesBar *m_downloadedPieces;
|
||||
PieceAvailabilityBar *m_piecesAvailability;
|
||||
PropTabBar *m_tabBar;
|
||||
LineEdit *m_contentFilterLine;
|
||||
int m_handleWidth;
|
||||
DownloadedPiecesBar *m_downloadedPieces = nullptr;
|
||||
PieceAvailabilityBar *m_piecesAvailability = nullptr;
|
||||
PropTabBar *m_tabBar = nullptr;
|
||||
LineEdit *m_contentFilterLine = nullptr;
|
||||
int m_handleWidth = -1;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user