summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordeva <deva>2009-03-20 13:14:40 +0000
committerdeva <deva>2009-03-20 13:14:40 +0000
commit8ca8f7da56f0524fde5cbbecb557c29a1b777ef5 (patch)
treedfa03514d3f07c47fdde25f593fb4e493c50b69d
parent0735c0e1ee8f4fc75c44b8e5ef2971c46392339d (diff)
Removed debugging output.
-rw-r--r--client/collapser.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/client/collapser.cc b/client/collapser.cc
index 7d95946..fd025c0 100644
--- a/client/collapser.cc
+++ b/client/collapser.cc
@@ -115,7 +115,6 @@ void Collapser::collapse()
emit collapsing();
t_anim.start();
- printf("(%d) collapsing\n", (int)this);
is_collapsed = true;
timer->start();
@@ -126,7 +125,6 @@ void Collapser::expand()
emit expanding();
t_anim.start();
- printf("(%d) expanding\n", (int)this);
// show expanded
if(collapsed) {
@@ -163,10 +161,7 @@ void Collapser::anim()
e_height = sz.height();
}
- // killTimer(timer_id);
-
double x = (double)(t_anim.elapsed()) / (double)ANIM_TIME;
- printf("(%d) x: %f\n", (int)this, x);
double y = 1;
if(x < 1) {
@@ -180,7 +175,6 @@ void Collapser::anim()
}
setFixedHeight(height);
- // timer_id = startTimer(ANIM_INTERVAL);
timer->start();
} else {
@@ -204,9 +198,3 @@ void Collapser::anim()
}
}
-/*
-void Collapser::timerEvent(QTimerEvent *)
-{
- anim();
-}
-*/