Reformatting code using Kernighan & Ritchie style, tabs, tab width=4.

Command line: astyle --style=kr --indent=force-tab=4 --lineend=linux -n -r <file names>
This commit is contained in:
lotodore
2011-02-11 20:02:08 +00:00
parent 29dca1846e
commit 02518c67b2
232 changed files with 22743 additions and 21044 deletions
+15 -9
View File
@@ -1,7 +1,7 @@
//
// C++ Interface: opengametimeoutmsgboximpl
//
// Description:
// Description:
//
//
// Author: Felix Hammer <f.hammer@web.de>, (C) 2008
@@ -25,11 +25,11 @@ class Session;
class timeoutMsgBoxImpl : public QMessageBox
{
Q_OBJECT
Q_OBJECT
public:
timeoutMsgBoxImpl(QMainWindow*);
timeoutMsgBoxImpl(QMainWindow*);
~timeoutMsgBoxImpl();
~timeoutMsgBoxImpl();
public slots:
@@ -37,11 +37,17 @@ public slots:
void timerRefresh();
void stopTimeout();
void setMySession ( boost::shared_ptr<Session> theValue ) { mySession = theValue; }
void setMsgID ( NetTimeoutReason theValue ) { msgID = theValue; }
void setTimeoutDuration ( int theValue ) { timeoutDuration = theValue; }
private:
void setMySession ( boost::shared_ptr<Session> theValue ) {
mySession = theValue;
}
void setMsgID ( NetTimeoutReason theValue ) {
msgID = theValue;
}
void setTimeoutDuration ( int theValue ) {
timeoutDuration = theValue;
}
private:
QTimer *timeOutTimer;
QPushButton *okButton;