Manuel-Kehl / Go-For-It

A stylish to-do list with built-in productivity timer. NOTE: all contributions should go to Jonathan Moerman's fork because this is where active development is taking place: https://github.com/JMoerman/Go-For-It
http://manuel-kehl.de/projects/go-for-it/
GNU General Public License v3.0
516 stars 51 forks source link

Use less lambdas #20

Closed voldyman closed 9 years ago

voldyman commented 9 years ago

Lambdas in vala should only be used for small functions, doing critical stuff in a lamda is no recommended since you don't get all the information about about the call, also the name of the lambda is random.

for important sections, move code out of lambdas.