remove debug printfs
authorDana Jansens <danakj@orodu.net>
Thu, 23 Jan 2003 04:20:08 +0000 (04:20 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 23 Jan 2003 04:20:08 +0000 (04:20 +0000)
otk/rendercolor.cc
otk/widget.cc
src/buttonwidget.cc
src/buttonwidget.hh
src/labelwidget.cc
src/labelwidget.hh

index 81aef26..be9521b 100644 (file)
@@ -53,8 +53,6 @@ void RenderColor::create()
 {
   unsigned long color = _blue | _green << 8 | _red << 16;
   
-  printf("CREATE COLOR: %lx\n", color);
-  
   // try get a gc from the cache
   CacheItem *item = _cache[_screen][color];
 
@@ -101,8 +99,6 @@ RenderColor::~RenderColor()
   CacheItem *item = _cache[_screen][color];
   assert(item); // it better be in the cache ...
 
-  printf("DESTROY COLOR: %lx %d\n", color, item->count);
-  
   if (--item->count <= 0) {
     // remove from the cache
     XFreeGC(**display, _gc);
index 154fc92..69a8623 100644 (file)
@@ -259,15 +259,12 @@ void Widget::ungrabKeyboard(void)
 void Widget::render(void)
 {
   if (!_texture) return;
-  printf("RENDER\n");
 
   Surface *s = _surface; // save the current surface
   
   _surface = new Surface(_screen, _rect.size());
   display->renderControl(_screen)->drawBackground(*_surface, *_texture);
 
-  if (dynamic_cast<FocusLabel*>(this))
-    printf("IM A FOCUSLABEL RENDERING\n");
   renderForeground(); // for inherited types to render onto the _surface
 
   XSetWindowBackgroundPixmap(**display, _window, _surface->pixmap());
index 534bdc8..eb864ba 100644 (file)
@@ -77,19 +77,12 @@ void ButtonWidget::setStyle(otk::RenderStyle *style)
 }
 
 
-void ButtonWidget::update()
-{
-  printf("ButtonWidget::update()\n");
-  otk::Widget::update();
-}
-
 void ButtonWidget::renderForeground()
 {
   otk::PixmapMask *pm;
   int width;
   bool draw = _dirty;
 
-  printf("ButtonWidget::renderForeground()\n");
   otk::Widget::renderForeground();
 
   if (draw) {
index 5a994a9..a888a3d 100644 (file)
@@ -22,7 +22,6 @@ public:
 
   virtual void adjust();
 
-  virtual void update();
   virtual void renderForeground();
   
   virtual void focus();
index becb62e..020e8b7 100644 (file)
@@ -67,18 +67,10 @@ void LabelWidget::unfocus()
 }
 
 
-void LabelWidget::update()
-{
-  printf("LabelWidget::update()\n");
-  otk::Widget::update();
-}
-
-
 void LabelWidget::renderForeground()
 {
   bool draw = _dirty;
 
-  printf("LabelWidget::renderForeground()\n");
   otk::Widget::renderForeground();
 
   if (draw) {
index 6373e1d..81d350c 100644 (file)
@@ -31,8 +31,6 @@ public:
   virtual void focus();
   virtual void unfocus();
 
-  virtual void update();
-
   virtual void renderForeground();
 
   inline const otk::ustring &text() const { return _text; }