~ubuntu-branches/ubuntu/gutsy/monodevelop/gutsy

« back to all changes in this revision

Viewing changes to Core/src/MonoDevelop.Dock/DockPlaceholder.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2007-07-16 13:29:54 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070716132954-pzjpp1tbvotxw30v
Tags: 0.14+dfsg-1ubuntu1
* Sync with Debian, remaining changes:
  + debian/control:
    - Build depend on firefox-dev, depend on firefox.
    - Adjust Maintainer field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
310
310
                [System.Diagnostics.Conditional ("DEBUG")]
311
311
                void PrintPlacementStack ()
312
312
                {
313
 
                        Console.WriteLine ("-- {0} count {1}", host.Name, placementStack.Count);
 
313
/*                      Console.WriteLine ("-- {0} count {1}", host.Name, placementStack.Count);
314
314
                        foreach (DockPlacement dp in placementStack)
315
315
                                Console.WriteLine (dp);
316
 
                }
 
316
*/              }
317
317
                
318
318
                public static void DumpTree (Widget w)
319
319
                {
328
328
                [System.Diagnostics.Conditional ("DEBUG")]
329
329
                static void DumpTreeRec (Widget w, int n)
330
330
                {
331
 
                        if (w is DockObject)
 
331
/*                      if (w is DockObject)
332
332
                                Console.WriteLine (new string (' ', n*4) + "- " + ((DockObject)w).Name + " " + w.GetType ());
333
333
                        if (w is Gtk.Container) {
334
334
                                foreach (Widget c in ((Gtk.Container)w).Children)
335
335
                                        DumpTreeRec (c, n+1);
336
336
                        }
337
 
                }
 
337
*/              }
338
338
        }
339
339
}