(qt) copyediting: whitespace/indentation

This commit is contained in:
Jordan Lee
2013-02-03 19:40:20 +00:00
parent 7f8415d59e
commit 5ae75bfced
9 changed files with 926 additions and 893 deletions

View File

@@ -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