mirror of
https://github.com/transmission/transmission.git
synced 2025-12-25 04:45:56 +00:00
(qt) copyediting: whitespace/indentation
This commit is contained in:
@@ -21,34 +21,34 @@ class QTimer;
|
||||
|
||||
class StatsDialog: public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_OBJECT
|
||||
|
||||
signals:
|
||||
void accepted( );
|
||||
signals:
|
||||
void accepted ();
|
||||
|
||||
public slots:
|
||||
void updateStats( );
|
||||
public slots:
|
||||
void updateStats ();
|
||||
|
||||
private slots:
|
||||
void onTimer( );
|
||||
private slots:
|
||||
void onTimer ();
|
||||
|
||||
public:
|
||||
StatsDialog( Session&, QWidget * parent = 0 );
|
||||
~StatsDialog( );
|
||||
virtual void setVisible( bool visible );
|
||||
public:
|
||||
StatsDialog (Session&, QWidget * parent = 0);
|
||||
~StatsDialog ();
|
||||
virtual void setVisible (bool visible);
|
||||
|
||||
private:
|
||||
Session & mySession;
|
||||
QTimer * myTimer;
|
||||
QLabel * myCurrentUp;
|
||||
QLabel * myCurrentDown;
|
||||
QLabel * myCurrentRatio;
|
||||
QLabel * myCurrentDuration;
|
||||
QLabel * myStartCount;
|
||||
QLabel * myTotalUp;
|
||||
QLabel * myTotalDown;
|
||||
QLabel * myTotalRatio;
|
||||
QLabel * myTotalDuration;
|
||||
private:
|
||||
Session & mySession;
|
||||
QTimer * myTimer;
|
||||
QLabel * myCurrentUp;
|
||||
QLabel * myCurrentDown;
|
||||
QLabel * myCurrentRatio;
|
||||
QLabel * myCurrentDuration;
|
||||
QLabel * myStartCount;
|
||||
QLabel * myTotalUp;
|
||||
QLabel * myTotalDown;
|
||||
QLabel * myTotalRatio;
|
||||
QLabel * myTotalDuration;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user