summaryrefslogtreecommitdiffstats
path: root/src/timeoutdialog.cpp
diff options
context:
space:
mode:
authorManuel Schneider2014-04-09 19:44:28 +0200
committerManuel Schneider2014-04-09 19:44:28 +0200
commit141451ea9f34d71d4255f323492cb463d96dd865 (patch)
treef3da5656e3dd393431fbcf9d78dcc810261bc36b /src/timeoutdialog.cpp
parent[beamergui] Removed the need of a configfile in beamergui, because it is hand... (diff)
downloadbeamergui-141451ea9f34d71d4255f323492cb463d96dd865.tar.gz
beamergui-141451ea9f34d71d4255f323492cb463d96dd865.tar.xz
beamergui-141451ea9f34d71d4255f323492cb463d96dd865.zip
[beamergui] Several changes
+ mouse position will be centered after changing the resolution. + fixed the bug with the positioning of the gui + fixed curious X async bug + deleted a lot of crap and old debug statements + current resolution will be highlighted
Diffstat (limited to 'src/timeoutdialog.cpp')
-rw-r--r--src/timeoutdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timeoutdialog.cpp b/src/timeoutdialog.cpp
index 8eb9aab..719fddd 100644
--- a/src/timeoutdialog.cpp
+++ b/src/timeoutdialog.cpp
@@ -2,10 +2,8 @@
// Author: Manuel Schneider <ms1144>
#include "timeoutdialog.h"
-#include <iostream>
#include <QProgressBar>
-
TimeOutDialog::TimeOutDialog(int time, QWidget *parent)
: QProgressDialog(parent), _time(time)
{
@@ -24,6 +22,7 @@ TimeOutDialog::TimeOutDialog(int time, QWidget *parent)
_timer.start(1000);
}
+
//___________________________________________________________________________
void TimeOutDialog::update()
{
@@ -36,6 +35,7 @@ void TimeOutDialog::update()
--_time;
}
+
//___________________________________________________________________________
void TimeOutDialog::cancel()
{