diff options
| author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-28 07:29:17 +0000 |
|---|---|---|
| committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-03-28 07:29:17 +0000 |
| commit | 5a25498676dac24fe74cf920510f5959aeb3b0af (patch) | |
| tree | 0d26633612b763cb980fade791a36627b716b959 | |
| parent | 163f7299aedf8bd84d296f63055cad1101b0d07c (diff) | |
| download | ruby-5a25498676dac24fe74cf920510f5959aeb3b0af.tar.gz ruby-5a25498676dac24fe74cf920510f5959aeb3b0af.tar.xz ruby-5a25498676dac24fe74cf920510f5959aeb3b0af.zip | |
* ext/tk/lib/tkextlib/iwidgets/notebook.rb: fixed typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8203 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | ext/tk/lib/tkextlib/iwidgets/notebook.rb | 2 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +Mon Mar 28 16:00:12 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * ext/tk/lib/tkextlib/iwidgets/notebook.rb: fixed typo. + Mon Mar 28 08:39:49 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> * ext/iconv/iconv.c (iconv_create): Iconv::Failure requires 3 @@ -42,7 +46,7 @@ Sat Mar 26 22:51:33 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> * ext/tk/lib/tkextlib/treectrl/tktreectrl.rb: bug fix and add methods to call TreeCtrl commands for bindings. - * ext/tk/sample/tkextlib/blt/*: new sample scritps. + * ext/tk/sample/tkextlib/blt/*: new sample scripts. * ext/tk/sample/tkextlib/treectrl/*: ditto. @@ -67,7 +71,7 @@ Thu Mar 24 03:57:48 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> * lib/webrick/server.rb (WEBrick::GenericServer#initialize): if :Port parameter is 0, it should be updated with the port number which - ectually listened. + actually listened. Wed Mar 23 00:35:10 2005 Shugo Maeda <shugo@ruby-lang.org> diff --git a/ext/tk/lib/tkextlib/iwidgets/notebook.rb b/ext/tk/lib/tkextlib/iwidgets/notebook.rb index c0897b884..4df56cce7 100644 --- a/ext/tk/lib/tkextlib/iwidgets/notebook.rb +++ b/ext/tk/lib/tkextlib/iwidgets/notebook.rb @@ -140,7 +140,7 @@ class Tk::Iwidgets::Notebook alias scrollbar yscrollbar def view(*idxs) - if idxss.size == 0 + if idxs.size == 0 window(tk_send_without_enc('view')) else tk_send_without_enc('view', *idxs) |
