diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-08-13 05:37:52 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-08-13 05:37:52 +0000 |
| commit | 29b7d942bfe9a92b5c3124e235fa54b5de31dccf (patch) | |
| tree | 3ea2e607f9ea08c56830ef7b803cd259e3d67c7f /ext/tk/lib/tkbgerror.rb | |
| parent | a2af08da0c33d2dcde870b491f62a8bd0c1c6b81 (diff) | |
| download | ruby-29b7d942bfe9a92b5c3124e235fa54b5de31dccf.tar.gz ruby-29b7d942bfe9a92b5c3124e235fa54b5de31dccf.tar.xz ruby-29b7d942bfe9a92b5c3124e235fa54b5de31dccf.zip | |
remove marshal/gtk/kconv
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@518 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tkbgerror.rb')
| -rw-r--r-- | ext/tk/lib/tkbgerror.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ext/tk/lib/tkbgerror.rb b/ext/tk/lib/tkbgerror.rb new file mode 100644 index 000000000..8022077a3 --- /dev/null +++ b/ext/tk/lib/tkbgerror.rb @@ -0,0 +1,17 @@ +# +# tkbgerror -- bgerror ( tkerror ) module +# 1998/07/16 by Hidetoshi Nagai <nagai@ai.kyutech.ac.jp> +# +require 'tk' + +module TkBgError + extend Tk + + def bgerror(message) + tk_call 'bgerror', message + end + alias tkerror bgerror + alias show bgerror + + module_function :bgerror, :tkerror, :show +end |
