Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.3.1/WinFormsUI-2.3.1/Docking/Helpers/Win32Helper.cs

    r2645 r4068  
    1 using System;
    21using System.Drawing;
    32using System.Windows.Forms;
    43
    5 namespace WeifenLuo.WinFormsUI.Docking
    6 {
    7   internal static class Win32Helper
    8   {
    9     public static Control ControlAtPoint(Point pt)
    10     {
    11       return Control.FromChildHandle(NativeMethods.WindowFromPoint(pt));
    12     }
     4namespace WeifenLuo.WinFormsUI.Docking {
     5  internal static class Win32Helper {
     6    public static Control ControlAtPoint(Point pt) {
     7      return Control.FromChildHandle(NativeMethods.WindowFromPoint(pt));
     8    }
    139
    14     public static uint MakeLong(int low, int high)
    15     {
    16       return (uint)((high << 16) + low);
    17     }
    18   }
     10    public static uint MakeLong(int low, int high) {
     11      return (uint)((high << 16) + low);
     12    }
     13  }
    1914}
Note: See TracChangeset for help on using the changeset viewer.