~cairo-dock-team/cairo-dock-plug-ins/plug-ins

« back to all changes in this revision

Viewing changes to keyboard-indicator/src/applet-draw.c

  • Committer: Fabounet (Fabrice Rey) - http://cairo-dock.org
  • Date: 2010-01-06 00:43:45 UTC
  • Revision ID: fabounet_fabrice_rey_-_httpcairo-dock.org-20100106004345-2q0knfv2i8eyk3xn
added some debug ENTER/LEAVE + Network-Monitor : few minor changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
 
100
100
gboolean cd_xkbd_render_step_opengl (CairoDockModuleInstance *myApplet)
101
101
{
 
102
        CD_APPLET_ENTER;
102
103
        double f = CD_APPLET_GET_TRANSITION_FRACTION ();
103
104
        //g_print ("%s (%.2f)\n", __func__, f);
104
105
        
145
146
                cairo_dock_set_ortho_view (iWidth, iHeight);
146
147
        }
147
148
        
148
 
        return TRUE;
 
149
        CD_APPLET_LEAVE (TRUE);
 
150
        //return TRUE;
149
151
}
150
152
 
151
153
 
152
154
gboolean cd_xkbd_render_step_cairo (CairoDockModuleInstance *myApplet)
153
155
{
 
156
        CD_APPLET_ENTER;
154
157
        double f = CD_APPLET_GET_TRANSITION_FRACTION ();
155
158
        
156
159
        //g_print ("%s (%.2f)\n", __func__, f);
210
213
                        cairo_restore (myDrawContext);
211
214
        }
212
215
        
213
 
        return TRUE;
 
216
        CD_APPLET_LEAVE (TRUE);
 
217
        //return TRUE;
214
218
}