Total() public method

public Total ( string message ) : void
message string
return void
Ejemplo n.º 1
0
 /** FAST */
 void DrawToolbars(Context cr, uint width, uint height)
 {
     Profiler p = new Profiler ();
     cr.Save ();
       cr.Translate (BreadcrumbMarginLeft, BreadcrumbMarginTop);
       DrawBreadcrumb (cr, width);
       cr.Translate (0, ToolbarY);
       DrawSortBar (cr);
       DrawSizeBar (cr);
     cr.Restore ();
     p.Total ("DrawToolbars");
 }