Changeset 14194
- Timestamp:
- Sep 8, 2013, 6:39:37 PM (9 years ago)
- Location:
- trunk/qt
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt/formatter.h
r14185 r14194 17 17 #include <QObject> 18 18 #include <QIcon> 19 20 #include <stdint.h> // int64_t 19 21 20 22 class Speed; -
trunk/qt/freespace-label.h
r14185 r14194 14 14 #define QTR_FREESPACE_LABEL_H 15 15 16 #include <stdint.h> 17 16 18 #include <QString> 17 19 #include <QTimer> 18 19 20 #include <QLabel> 20 21 -
trunk/qt/make-dialog.h
r14176 r14194 17 17 #include <QTimer> 18 18 19 structQAbstractButton;20 structQPlainTextEdit;21 structQLineEdit;22 structQCheckBox;23 structQLabel;24 structQPushButton;25 structQRadioButton;26 structSession;27 structQProgressBar;28 structQDialogButtonBox;19 class QAbstractButton; 20 class QPlainTextEdit; 21 class QLineEdit; 22 class QCheckBox; 23 class QLabel; 24 class QPushButton; 25 class QRadioButton; 26 class Session; 27 class QProgressBar; 28 class QDialogButtonBox; 29 29 30 30 extern "C" -
trunk/qt/options.cc
r14185 r14194 10 10 * $Id$ 11 11 */ 12 13 #include <algorithm> // std::min() 12 14 13 15 #include <QApplication> -
trunk/qt/torrent-filter.cc
r13896 r14194 212 212 TorrentFilter :: countTorrentsPerMode (int * setmeCounts) const 213 213 { 214 std::fill_n (setmeCounts, FilterMode::NUM_MODES, 0);214 std::fill_n (setmeCounts, static_cast<std::size_t>(FilterMode::NUM_MODES), 0); 215 215 216 216 for (int row(0); ; ++row) -
trunk/qt/torrent.h
r14185 r14194 29 29 #include "speed.h" 30 30 #include "types.h" 31 32 #ifdef ERROR 33 #undef ERROR 34 #endif 31 35 32 36 extern "C" -
trunk/qt/tracker-delegate.h
r11522 r14194 11 11 */ 12 12 13 #ifndef QTR_T ORRENT_DELEGATE_H14 #define QTR_T ORRENT_DELEGATE_H13 #ifndef QTR_TRACKER_DELEGATE_H 14 #define QTR_TRACKER_DELEGATE_H 15 15 16 16 #include <QItemDelegate> … … 21 21 class QStyle; 22 22 class Session; 23 classTrackerInfo;23 struct TrackerInfo; 24 24 25 25 class TrackerDelegate: public QItemDelegate
Note: See TracChangeset
for help on using the changeset viewer.