From 17e0ebc965cce9416205fd7d32c2515dcbc4ce83 Mon Sep 17 00:00:00 2001 From: spx Date: Wed, 14 Jan 2015 03:26:48 +0900 Subject: [PATCH] =?utf8?q?TabClass=E3=81=AE=E4=BD=BF=E3=82=8F=E3=82=8C?= =?utf8?q?=E3=81=A6=E3=81=84=E3=81=AA=E3=81=84=E3=83=97=E3=83=AD=E3=83=91?= =?utf8?q?=E3=83=86=E3=82=A3=E3=81=A8=E3=83=A1=E3=82=BD=E3=83=83=E3=83=89?= =?utf8?q?=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- OpenTween/StatusDictionary.cs | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/OpenTween/StatusDictionary.cs b/OpenTween/StatusDictionary.cs index 14bd2187..77eaecf1 100644 --- a/OpenTween/StatusDictionary.cs +++ b/OpenTween/StatusDictionary.cs @@ -1440,7 +1440,6 @@ namespace OpenTween //Search query private string _searchLang = ""; private string _searchWords = ""; - private string _nextPageQuery = ""; public string SearchLang { @@ -1467,35 +1466,7 @@ namespace OpenTween } } - public string NextPageQuery - { - get - { - return _nextPageQuery; - } - set - { - _nextPageQuery = value; - } - } - - public int GetSearchPage(int count) - { - return ((_ids.Count / count) + 1); - } private Dictionary _beforeQuery = new Dictionary(); - public void SaveQuery(bool more) - { - var qry = new Dictionary(); - if (string.IsNullOrEmpty(_searchWords)) - { - _beforeQuery = qry; - return; - } - qry.Add("q", _searchWords); - if (!string.IsNullOrEmpty(_searchLang)) qry.Add("lang", _searchLang); - _beforeQuery = qry; - } public bool IsQueryChanged() { -- 2.11.0