~ken-vandine/ubuntu/lucid/gwibber/twitter-oauth

« back to all changes in this revision

Viewing changes to gwibber/lib/gtk/identica.py

  • Committer: Ken VanDine
  • Date: 2010-08-31 20:08:35 UTC
  • mfrom: (1.1.21 upstream)
  • Revision ID: ken.vandine@canonical.com-20100831200835-i7l1y21kdikiq582
Tags: 2.30.2~bzr742-0ubuntu1
releasing version 2.30.2~bzr742-0ubuntu1

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
  """AccountWidget: A widget that provides a user interface for configuring identica accounts in Gwibber
27
27
  """
28
28
  
29
 
  def __init__(self, account=None):
 
29
  def __init__(self, account=None, dialog=None):
30
30
    """Creates the account pane for configuring identica accounts"""
31
31
    gtk.VBox.__init__( self, False, 20 )
32
32
    self.ui = gtk.Builder()
36
36
    self.vbox_settings = self.ui.get_object("vbox_settings")
37
37
    self.pack_start(self.vbox_settings, False, False)
38
38
    self.vbox_settings.show_all()
39
 
    
 
39
    if dialog:
 
40
       dialog.get_object("vbox_create").show()