Skip to content

Instantly share code, notes, and snippets.

diff --git a/OpenTween/Twitter.cs b/OpenTween/Twitter.cs
index 75210fb..0b167e6 100644
--- a/OpenTween/Twitter.cs
+++ b/OpenTween/Twitter.cs
@@ -2240,7 +2240,7 @@ namespace OpenTween
return "";
}
- private string CreatePostsFromSearchJson(string content, TabClass tab, bool read, int count, ref long minimumId)
+ private string CreatePostsFromSearchJson(string content, TabClass tab, bool read, int count, ref long minimumId, bool more)
@spx268
spx268 / Tween.cs
Created August 24, 2012 21:26
OpenTweenのウィンドウにワークエリアへのスナップ機能を付ける。Ctrlキーを押している間は無効。
using System.Runtime.InteropServices;
private const uint WM_WINDOWPOSCHANGING = 0x0046;
private const uint SWP_NOSIZE = 0x0001;
private const uint SWP_NOMOVE = 0x0002;
private const int SNAPDISTANCE = 10;
private bool _enterSizeMove = false;
[StructLayout(LayoutKind.Sequential)]