summaryrefslogtreecommitdiffstats
path: root/src/server/mainwindow/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/mainwindow/mainwindow.cpp')
-rw-r--r--src/server/mainwindow/mainwindow.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/server/mainwindow/mainwindow.cpp b/src/server/mainwindow/mainwindow.cpp
index 28bf268..9a3bd76 100644
--- a/src/server/mainwindow/mainwindow.cpp
+++ b/src/server/mainwindow/mainwindow.cpp
@@ -315,7 +315,6 @@ ConnectionFrame* MainWindow::createFrame(QString computerId, QPoint pxCoord, QPo
{
// Allocate and resize
const Room* room = Global::getCurrentRoom();
- qDebug() << "createFrame, access room: " << room;
int width = getTileWidthPx() * (room == NULL ? 1 : room->clientSize.width());
int height = getTileHeightPx() * (room == NULL ? 1 : room->clientSize.height());
@@ -647,14 +646,12 @@ void MainWindow::resizeEvent(QResizeEvent* e)
void MainWindow::lockContextButtons() {
- qDebug() << "LOCK";
for (auto it = _contextButtons.begin(); it != _contextButtons.end(); ++it) {
(*it)->setEnabled(false);
}
}
void MainWindow::unlockContextButtons() {
- qDebug() << "UNLOCK";
for (auto it = _contextButtons.begin(); it != _contextButtons.end(); ++it) {
(*it)->setEnabled(true);
}