Skip to content

Commit

Permalink
Changed static classes to namespaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
oozcitak committed Dec 12, 2018
1 parent cd4024f commit 14dcbcf
Show file tree
Hide file tree
Showing 4 changed files with 2,742 additions and 2,720 deletions.
12 changes: 4 additions & 8 deletions ImageListView/ImageListView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,12 @@
using System.Resources;
using System.Windows.Forms;

/// <summary>
/// The Manina.Windows.Forms namespace contains new and
/// enhanced windows forms components.
/// </summary>
namespace Manina.Windows.Forms
{
/// <summary>
/// The Manina.Windows.Forms namespace contains new and
/// enhanced windows forms components.
/// </summary>
internal class NamespaceDoc
{
}

/// <summary>
/// Represents a listview control for image files.
/// </summary>
Expand Down
21 changes: 18 additions & 3 deletions ImageListView/ImageListViewItemAdaptor.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;
// ImageListView - A listview control for image files
// Copyright (C) 2009 Ozgur Ozcitak
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Ozgur Ozcitak ([email protected])

using System;
using System.Drawing;

namespace Manina.Windows.Forms
Expand Down
Loading

0 comments on commit 14dcbcf

Please sign in to comment.