aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-28 07:29:17 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-28 07:29:17 +0000
commit041ac28e4ed576b2e19233f24102255f66c58f70 (patch)
tree0d26633612b763cb980fade791a36627b716b959
parent44a88a98db95f6f6682b407fdeb6fc4c46b48089 (diff)
downloadruby-041ac28e4ed576b2e19233f24102255f66c58f70.tar.gz
* ext/tk/lib/tkextlib/iwidgets/notebook.rb: fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8203 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog8
-rw-r--r--ext/tk/lib/tkextlib/iwidgets/notebook.rb2
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index d937631af4..b9968ffc77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 c0897b884f..4df56cce7f 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)