Skip to content

Commit

Permalink
last update for today
Browse files Browse the repository at this point in the history
  • Loading branch information
mswarowsky committed Aug 21, 2010
1 parent 8a4c84d commit d6a8383
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion QuteScoop/src/Whazzup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Whazzup::Whazzup() {
connect(statusDownloader, SIGNAL(done(bool)), this, SLOT(statusDownloaded(bool)));

// init random seed to switch between URLs
srand(time(NULL));
//srand(time(NULL));

downloadTimer = new QTimer(this);
connect(downloadTimer, SIGNAL(timeout()), this, SLOT(download()));
Expand Down
2 changes: 1 addition & 1 deletion QuteScoop/src/WhazzupData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ WhazzupData::WhazzupData(QBuffer* buffer):
whazzupTime(QDateTime())
{
enum ParserState {STATE_NONE, STATE_GENERAL, STATE_CLIENTS, STATE_SERVERS};
ParserState state = STATE_NONE;
ParserState state = STATE_NONE;

while(buffer->canReadLine()) {
QString line = QString(buffer->readLine()).trimmed();
Expand Down

0 comments on commit d6a8383

Please sign in to comment.