Changeset 14540
- Timestamp:
- Jun 12, 2015, 10:41:36 PM (8 years ago)
- Location:
- trunk/qt
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt/FileTreeItem.h
r14539 r14540 11 11 #define QTR_FILE_TREE_ITEM_H 12 12 13 #include < stdint.h>13 #include <cstdint> 14 14 15 15 #include <QCoreApplication> -
trunk/qt/FileTreeModel.h
r14539 r14540 11 11 #define QTR_FILE_TREE_MODEL_H 12 12 13 #include < stdint.h>13 #include <cstdint> 14 14 15 15 #include <QAbstractItemModel> -
trunk/qt/Formatter.h
r14539 r14540 11 11 #define QTR_FORMATTER_H 12 12 13 #include < stdint.h> // int64_t13 #include <cstdint> // int64_t 14 14 15 15 #include <QCoreApplication> -
trunk/qt/FreeSpaceLabel.h
r14539 r14540 11 11 #define QTR_FREE_SPACE_LABEL_H 12 12 13 #include < stdint.h>13 #include <cstdint> 14 14 15 15 #include <QLabel> -
trunk/qt/Prefs.cc
r14539 r14540 8 8 */ 9 9 10 #include <stdlib.h>11 12 10 #include <cassert> 11 #include <cstdlib> 13 12 #include <iostream> 14 13 -
trunk/qt/TorrentModel.h
r14539 r14540 52 52 virtual QVariant data (const QModelIndex& index, int role = Qt::DisplayRole) const; 53 53 54 signals:55 void torrentsAdded (QSet<int>);56 57 54 public slots: 58 55 void updateTorrents (tr_variant * torrentList, bool isCompleteList); 59 56 void removeTorrents (tr_variant * torrentList); 60 57 void removeTorrent (int id); 58 59 signals: 60 void torrentsAdded (QSet<int>); 61 61 62 62 private:
Note: See TracChangeset
for help on using the changeset viewer.