summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Klinger2016-09-27 16:28:16 +0200
committerChristian Klinger2016-09-27 16:28:16 +0200
commit72f9827be5d4bbf692f126c06e3277cf23a5a551 (patch)
tree2bc3660531dbf99bebedd047fcba533257475e21
parentimproved option parsing. (diff)
downloadpvs2-72f9827be5d4bbf692f126c06e3277cf23a5a551.tar.gz
pvs2-72f9827be5d4bbf692f126c06e3277cf23a5a551.tar.xz
pvs2-72f9827be5d4bbf692f126c06e3277cf23a5a551.zip
reduced noise in the output (old debug messages...)
-rw-r--r--src/client/clientapp/clientapp.cpp1
-rw-r--r--src/client/connectwindow/connectwindow.cpp1
-rw-r--r--src/client/toolbar/toolbar.cpp4
-rw-r--r--src/server/mainwindow/mainwindow.cpp1
4 files changed, 0 insertions, 7 deletions
diff --git a/src/client/clientapp/clientapp.cpp b/src/client/clientapp/clientapp.cpp
index 05289e5..8ae804e 100644
--- a/src/client/clientapp/clientapp.cpp
+++ b/src/client/clientapp/clientapp.cpp
@@ -53,7 +53,6 @@ void ClientApp::initConfiguration() {
USER_SETTINGS(settings);
QFileInfo fi(settings.fileName());
QDir path(fi.path());
- qDebug() << "User settings are in:" << settings.fileName();
if (!path.exists())
path.mkpath(path.absolutePath());
// Now check if settings file exists. If not, copy system default (if available)
diff --git a/src/client/connectwindow/connectwindow.cpp b/src/client/connectwindow/connectwindow.cpp
index 26a5da4..712691e 100644
--- a/src/client/connectwindow/connectwindow.cpp
+++ b/src/client/connectwindow/connectwindow.cpp
@@ -269,7 +269,6 @@ void ConnectWindow::onBtnCancel()
/** check if "manual_connection" is selected, then switch to manual
* connection page */
void ConnectWindow::onRoomSelection(int index) {
- qDebug() << "onRoomSelection";
QString sessionName = _ui->comboBox_rooms->itemData(index).toString();
if (sessionName == "manual_connection") {
qDebug() << "switch to manual connection";
diff --git a/src/client/toolbar/toolbar.cpp b/src/client/toolbar/toolbar.cpp
index 54a5a77..da27fd5 100644
--- a/src/client/toolbar/toolbar.cpp
+++ b/src/client/toolbar/toolbar.cpp
@@ -130,8 +130,6 @@ void Toolbar::init()
const QDesktopWidget desktop;
const QRect primaryScreen = desktop.screenGeometry();
move(primaryScreen.left() + (primaryScreen.width() - this->width())/2 , primaryScreen.top());
- qDebug() << primaryScreen.left() << primaryScreen.top() << primaryScreen.right() << primaryScreen.bottom();
-
/* Setup hide timer */
_hideTimer.setInterval(500);
@@ -243,7 +241,6 @@ bool Toolbar::isManagerPc(){
foreach (const QHostAddress &address, QNetworkInterface::allAddresses()) {
QString ip = conf.value("ip").toString();
if (address.toString() == mgrIP) {
- qDebug() << "this pc could be a manager of room " << roomName << "because this address is " << address;
return true;
}
}
@@ -296,7 +293,6 @@ QList<Room> Toolbar::myRooms() {
}
/* sort */
qStableSort(myRooms.begin(), myRooms.end(), qGreater<Room>());
- qDebug() << "myRooms() = " << myRooms;
return myRooms;
}
/** Identifies the responsible manager for this client by searching through the
diff --git a/src/server/mainwindow/mainwindow.cpp b/src/server/mainwindow/mainwindow.cpp
index ff34911..b29addc 100644
--- a/src/server/mainwindow/mainwindow.cpp
+++ b/src/server/mainwindow/mainwindow.cpp
@@ -439,7 +439,6 @@ void MainWindow::tryToUseRoomTemplate()
if (!conf->contains("rooms")) { qDebug() << "Invalid config file (no rooms are set)!"; return; }
QStringList rooms = conf->value("rooms").toStringList();
- qDebug() << rooms;
QString myRoom = "";