~seriy-pr/gwibber/vkontakte-ru-plugin

« back to all changes in this revision

Viewing changes to client/replies-item.vala

  • Committer: Sergey Prokhorov
  • Date: 2011-10-02 17:13:01 UTC
  • mfrom: (932.1.248 trunk)
  • Revision ID: root@seriyps.ru-20111002171301-tkxgikc7s6wvkoll
Merged with head

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2011 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by Neil Jagdish Patel <njpatel@gmail.com>
 
17
 */
 
18
 
 
19
public class RepliesItem : TabBarStreamItem
 
20
{
 
21
  public RepliesItem (Gee.HashMap streams)
 
22
  {
 
23
    Object (stream:"replies", icon_name:"mail_reply", tooltip:_("Replies"), streams:streams);
 
24
  }
 
25
 
 
26
  construct
 
27
  {
 
28
  }
 
29
 
 
30
  public override Gtk.Widget? get_toolbar ()
 
31
  {
 
32
    return null;
 
33
  }
 
34
  
 
35
  public override Gtk.Widget? get_view ()
 
36
  {
 
37
    return view;
 
38
  }
 
39
}