diff options
author | Joe Zhao <ztuowen@gmail.com> | 2015-09-06 15:32:24 -0600 |
---|---|---|
committer | Joe Zhao <ztuowen@gmail.com> | 2015-09-06 15:32:24 -0600 |
commit | 41ce2c3aca241a3866246e68fc7b91e6151e2f51 (patch) | |
tree | 699b05526b9755a9068036439af3a23d4aa26c80 /totimer.cpp | |
parent | 83f3214e91932ef2bdb4c6d75dc3472938008144 (diff) | |
download | pomodori-41ce2c3aca241a3866246e68fc7b91e6151e2f51.tar.gz pomodori-41ce2c3aca241a3866246e68fc7b91e6151e2f51.tar.bz2 pomodori-41ce2c3aca241a3866246e68fc7b91e6151e2f51.zip |
fixed error 139
Diffstat (limited to 'totimer.cpp')
-rw-r--r-- | totimer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/totimer.cpp b/totimer.cpp index ec9b5dd..b4209dd 100644 --- a/totimer.cpp +++ b/totimer.cpp @@ -69,7 +69,7 @@ void timer_set(tres* lastres, guint32 wait) { timeout=true; lastres->time = lastres->time + wait; - timerid = g_timeout_add(wait*60*1000,(GSourceFunc)notify,lastres); + timerid = g_timeout_add(wait*1000,(GSourceFunc)notify,lastres); } } |