Added missing initialization in

- pqissl
- pqissludp
- PeerConnectStateBox
- RsTlvBanListEntry
- RsServer
- TcpStream
- PGPCertificateInfo
- peerConnectAddress
- AudioInputConfig
- SpeexInputProcessor
- xProgressBar
- TBoard

Removed unused member:
- xProgressBar


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8611 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2015-07-13 11:03:18 +00:00
parent 502d2353cb
commit c76141ed65
13 changed files with 31 additions and 6 deletions

View file

@ -338,11 +338,16 @@ TBoard::TBoard(QWidget *parent) {
setFocusPolicy(Qt::StrongFocus);
isStarted = false;
isWaitingAfterLine = false;
numLinesRemoved = 0;
numPiecesDropped = 0;
isPaused = false;
clearBoard();
nextPiece.setRandomShape();
score = 0;
level = 0;
curX = 0;
curY = 0;
maxScore = Settings->value("/about/maxsc").toInt();
}

View file

@ -45,6 +45,7 @@ xProgressBar::xProgressBar(const FileProgressInfo& pinfo,QRect rect, QPainter *p
this->schemaIndex = schemaIndex;
this->rect = rect;
this->painter = painter;
displayText = false;
// set the progress bar colors
setColor();
// configure span

View file

@ -58,7 +58,6 @@ class xProgressBar : public QObject
Q_OBJECT
private:
// progress vlues
uint32_t _nb_chunks ;
int schemaIndex;
bool displayText;
int vSpan;