rename remaining class members with m_ prefix.

This commit is contained in:
2012-06-26 07:09:49 +00:00
parent 6a1d82490e
commit 69ab13a7db
84 changed files with 582 additions and 585 deletions

View File

@@ -48,17 +48,17 @@ private:
/**
* @brief Startpoint of the connection
*/
OutputSocket *fromSocket;
OutputSocket *m_fromSocket;
/**
* @brief Endpoint of the connection
*/
InputSocket *toSocket;
InputSocket *m_toSocket;
/**
* @brief has the resize already been done for this connection
*/
bool ignoreResizeCheck;
bool m_ignoreResizeCheck;
public:
SocketConnection();
@@ -104,12 +104,12 @@ public:
/**
* @brief set, whether the resize has already been done for this SocketConnection
*/
void setIgnoreResizeCheck(bool check) { this->ignoreResizeCheck = check; }
void setIgnoreResizeCheck(bool check) { this->m_ignoreResizeCheck = check; }
/**
* @brief has the resize already been done for this SocketConnection
*/
bool isIgnoreResizeCheck() const { return this->ignoreResizeCheck; }
bool isIgnoreResizeCheck() const { return this->m_ignoreResizeCheck; }
/**
* @brief does this SocketConnection need resolution conversion