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

« back to all changes in this revision

Viewing changes to ext/tk/lib/tkextlib/tcllib/tablelist_tile.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:
 
1
#
 
2
#  tkextlib/tcllib/tablelist_tlie.rb
 
3
#                               by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
 
4
#
 
5
#   * Part of tcllib extension
 
6
#   * A multi-column listbox
 
7
 
 
8
require 'tk'
 
9
require 'tkextlib/tcllib.rb'
 
10
 
 
11
# TkPackage.require('tablelist_tile', '4.2')
 
12
TkPackage.require('Tablelist_tile')
 
13
 
 
14
unless defined? Tk::Tcllib::Tablelist_usingTile
 
15
  Tk::Tcllib::Tablelist_usingTile = true
 
16
end
 
17
 
 
18
requrie 'tkextlib/tcllib/tablelist_core'
 
19
 
 
20
module Tk
 
21
  module Tcllib
 
22
    Tablelist_Tile = Tablelist
 
23
    TableList_Tile = Tablelist
 
24
  end
 
25
end