class Flumtter::Window::Conversation

Public Class Methods

new(obj, twitter) click to toggle source
Calls superclass method Flumtter::Window::Buf::Screen::new
# File lib/flumtter/app/core/windows/conversation.rb, line 20
def initialize(obj, twitter)
  buf = ConversationBuf.new(twitter)
  buf.add(obj)
  super(buf, "Conversation")
  add_command(twitter)
end