Tim,
If you set a breakpoint (using firebug or chrome's developer tools) in addPointsToMap you can check to see if results are returned.
One thing you might want to check is this sample is setup to draw points so it defines symbology for point features. Your query task looks like its a parcel layer which probably contains polygons. You'll want to change the symbols below to be SimpleFillSymbols to draw polygon features.
defaultSymbol = new esri.symbol.SimpleMarkerSymbol().setColor(new dojo.Color([0,0,255]));
highlightSymbol = new esri.symbol.SimpleMarkerSymbol().setColor(new dojo.Color([255,0,0]));