Remove debugging stuff

This commit is contained in:
Dan Williams 2007-02-25 22:27:33 -05:00
parent c1efa0a266
commit 88728f996e
2 changed files with 0 additions and 4 deletions

View File

@ -113,7 +113,6 @@ class ColorPicker(hippo.CanvasBox, hippo.CanvasItem):
self._slider_values = 9
self._xo = CanvasIcon(scale=units.XLARGE_ICON_SCALE,
# icon_name='stock-buddy.svg',
icon_name='theme:stock-buddy',
stroke_color=color.HTMLColor(self._fg_hex),
fill_color=color.HTMLColor(self._bg_hex))

View File

@ -97,7 +97,6 @@ class VideoBox(hippo.CanvasBox, hippo.CanvasItem):
self.append(self._video_widget)
def _new_pixbuf_cb(self, widget, pixbuf):
print "got new pixbuf"
if self._pixbuf:
del self._pixbuf
self._pixbuf = pixbuf
@ -172,7 +171,6 @@ class IntroBox(hippo.CanvasBox, hippo.CanvasItem):
self.append(self._color_box)
self._ok = iconbutton.IconButton(icon_name="theme:stock-forward",
# self._ok = iconbutton.IconButton(icon_name="stock-forward.svg",
padding_bottom=units.grid_to_pixels(0.5))
self._ok.connect('activated', self._ok_activated)
self.append(self._ok)
@ -183,7 +181,6 @@ class IntroBox(hippo.CanvasBox, hippo.CanvasItem):
color = self._color_box.get_color()
if not pixbuf or not name or not color:
print "pixbuf: %r, name %r, color %r" % (pixbuf, name, color)
return
self._create_profile(pixbuf, name, color)