OSDN Git Service

PictureBoxExクラスを削除
authorKimura Youichi <kim.upsilon@bucyou.net>
Sat, 10 May 2014 05:54:18 +0000 (14:54 +0900)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 10 May 2014 07:38:17 +0000 (16:38 +0900)
OpenTween/OpenTween.csproj
OpenTween/PictureBoxEx.cs [deleted file]

index 23de325..171f1be 100644 (file)
     <Compile Include="OpenURL.Designer.cs">
       <DependentUpon>OpenURL.cs</DependentUpon>
     </Compile>
-    <Compile Include="PictureBoxEx.cs">
-      <SubType>Component</SubType>
-    </Compile>
     <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="Properties\Resources.Designer.cs">
       <AutoGen>True</AutoGen>
diff --git a/OpenTween/PictureBoxEx.cs b/OpenTween/PictureBoxEx.cs
deleted file mode 100644 (file)
index 5f50913..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-// OpenTween - Client of Twitter
-// Copyright (c) 2007-2011 kiri_feather (@kiri_feather) <kiri.feather@gmail.com>
-//           (c) 2008-2011 Moz (@syo68k)
-//           (c) 2008-2011 takeshik (@takeshik) <http://www.takeshik.org/>
-//           (c) 2010-2011 anis774 (@anis774) <http://d.hatena.ne.jp/anis774/>
-//           (c) 2010-2011 fantasticswallow (@f_swallow) <http://twitter.com/f_swallow>
-//           (c) 2011      kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
-// All rights reserved.
-// 
-// This file is part of OpenTween.
-// 
-// This program is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 3 of the License, or (at your option)
-// any later version.
-// 
-// This program is distributed in the hope that it will be useful, but
-// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
-// for more details. 
-// 
-// You should have received a copy of the GNU General Public License along
-// with this program. If not, see <http://www.gnu.org/licenses/>, or write to
-// the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
-// Boston, MA 02110-1301, USA.
-
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Windows.Forms;
-
-namespace OpenTween.OpenTweenCustomControl
-{
-    public class PictureBoxEx : PictureBox
-    {
-        protected override void OnPaint(PaintEventArgs pe)
-        {
-            try
-            {
-                base.OnPaint(pe);
-            }
-            catch (OutOfMemoryException)
-            {
-            }
-        }
-    }
-}