Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/globos.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@sugarlabs.org>2010-11-21 07:11:39 (GMT)
committer Gonzalo Odiard <godiard@sugarlabs.org>2010-11-21 07:13:35 (GMT)
commit2551bf5e3fdcd3870c2a79c4e2b944d8da5ca6f0 (patch)
tree19266562a1a2cb3b53f5bf5bc7772f4b99a0196f /globos.py
parentf9e625353f99ea929cb28712069425ce7a2a694a (diff)
remove or comment logging
Diffstat (limited to 'globos.py')
-rw-r--r--globos.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/globos.py b/globos.py
index 3d37ddc..daa0b27 100644
--- a/globos.py
+++ b/globos.py
@@ -45,7 +45,6 @@ class Globo:
self.texto = CuadroTexto(self.x, self.y, ancho_text, alto_text)
def imprimir(self, context):
- logging.error("start printing")
#dibujo al globo de dialogo
context.save()
@@ -102,7 +101,6 @@ class Globo:
self.dibujar_controles(context)
def dibujar_controles(self, context):
- logging.error("start printing controls")
# si esta seleccionado se dibujan los controles
if self.selec:
@@ -139,7 +137,6 @@ class Globo:
context.stroke()
context.restore()
- logging.error("end printing controls")
def get_circle_position(self):
if self.direccion == DIR_ABAJO:
@@ -348,7 +345,6 @@ class Rectangulo(Globo):
self.texto = CuadroTexto(self.x, self.y, ancho_text, alto_text)
def imprimir(self, context):
- logging.error("start printing rectangle")
#imprimimos el rectangulo
context.set_line_width(3)
context.rectangle(self.x - self.ancho, self.y - self.alto,
@@ -418,7 +414,6 @@ class Nube(Globo):
self.texto = CuadroTexto(self.x, self.y, ancho_text, alto_text)
def imprimir(self, context):
- logging.error("start printing cloud")
self.draw(context)
@@ -441,7 +436,6 @@ class Nube(Globo):
self.texto.imprimir(context)
self.dibujar_controles(context)
- logging.error("end printing cloud")
def draw(self, cr):
@@ -739,7 +733,6 @@ class CuadroTexto:
self.double_key = None
def imprimir(self, context):
- logging.error("start printing text")
context.set_source_rgb(self.color_r, self.color_g, self.color_b)
if self.mostrar_borde:
#dibuja recuadro
@@ -800,7 +793,6 @@ class CuadroTexto:
context.show_text("_")
context.stroke()
- logging.error("end printing text")
def insertar_texto(self, key, keyval, context):