In line #51 of your last snippet of code you are creating a local variable called "zoomer" which shadows the variable you have declared as the class member. Thus you end up initializing the local variable instead of the class member. Same goes with other variables, by the way.
Bookmarks