~ubuntu-branches/ubuntu/trusty/ruby1.9/trusty

« back to all changes in this revision

Viewing changes to ext/tk/lib/tkextlib/iwidgets/labeledframe.rb

  • Committer: Bazaar Package Importer
  • Author(s): Lucas Nussbaum
  • Date: 2006-05-08 22:23:12 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060508222312-w2wqeaz030ifi59j
Tags: 1.9.0+20060423-3ubuntu1
* Resynchronized with Debian.
* Only change from Debian is the addition of
  debian/patches/903_sparc_fix_define.patch to fix illegal instructions
  at runtime on sparc. (change from 1.9.0+20050921-1ubuntu1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
  WidgetClassName = 'Labeledframe'.freeze
19
19
  WidgetClassNames[WidgetClassName] = self
20
20
 
 
21
  def __strval_optkeys
 
22
    super() << 'labeltext'
 
23
  end
 
24
  private :__strval_optkeys
 
25
 
21
26
  def __tkvariable_optkeys
22
27
    super() << 'labelvariable'
23
28
  end
24
29
  private :__tkvariable_optkeys
25
30
 
 
31
  def __font_optkeys
 
32
    super() << 'labelfont'
 
33
  end
 
34
  private :__font_optkeys
 
35
 
26
36
  def child_site
27
37
    window(tk_call(@path, 'childsite'))
28
38
  end