[Qt] style police and small addition in rpcconsole
- fix spaces, indentation and coding style glitches
This commit is contained in:
@@ -11,10 +11,12 @@
|
||||
#include <QAbstractTableModel>
|
||||
#include <QStringList>
|
||||
|
||||
class PeerTablePriv;
|
||||
class ClientModel;
|
||||
class PeerTablePriv;
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QTimer;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
struct CNodeCombinedStats {
|
||||
CNodeStats nodestats;
|
||||
@@ -24,7 +26,7 @@ struct CNodeCombinedStats {
|
||||
class NodeLessThan
|
||||
{
|
||||
public:
|
||||
NodeLessThan(int nColumn, Qt::SortOrder fOrder):
|
||||
NodeLessThan(int nColumn, Qt::SortOrder fOrder) :
|
||||
column(nColumn), order(fOrder) {}
|
||||
bool operator()(const CNodeCombinedStats &left, const CNodeCombinedStats &right) const;
|
||||
|
||||
@@ -73,7 +75,6 @@ private:
|
||||
QStringList columns;
|
||||
PeerTablePriv *priv;
|
||||
QTimer *timer;
|
||||
|
||||
};
|
||||
|
||||
#endif // PEERTABLEMODEL_H
|
||||
|
||||
Reference in New Issue
Block a user