summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--ext/win32ole/tests/testWIN32OLE.rb8
-rw-r--r--ext/win32ole/win32ole.c13
3 files changed, 22 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 40f804cf35..45bceaab5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sat Nov 6 20:40:16 2004 Masaki Suketa <masaki.suketa@nifty.ne.jp>
+
+ * ext/win32ole/win32ole.c: rename WIN32OLE#ole_obj_help to
+ WIN32OLE#ole_type. alias ole_obj_help to ole_type.
+
+ * ext/win32ole/tests/testWIN32OLE.rb: ditto.
+
Sat Nov 6 11:18:59 2004 Tadayoshi Funaba <tadf@dotrb.org>
* lib/date.rb (_parse): checks whether zone was given.
diff --git a/ext/win32ole/tests/testWIN32OLE.rb b/ext/win32ole/tests/testWIN32OLE.rb
index d0705093f3..379eca315d 100644
--- a/ext/win32ole/tests/testWIN32OLE.rb
+++ b/ext/win32ole/tests/testWIN32OLE.rb
@@ -223,6 +223,14 @@ class TestWin32OLE < RUNIT::TestCase
book = workbooks.invoke( 'add' )
assert_instance_of(WIN32OLE, book)
end
+ def test_ole_type
+ tobj = @excel.ole_type
+ assert_equal('_Application', tobj.name)
+ end
+ def test_ole_obj_help
+ tobj = @excel.ole_type
+ assert_equal('_Application', tobj.name)
+ end
def test_ole_methods
methods = @excel.ole_methods
method_names = methods.collect{|m| m.name}
diff --git a/ext/win32ole/win32ole.c b/ext/win32ole/win32ole.c
index 78f78a4b84..aab1a9c7f7 100644
--- a/ext/win32ole/win32ole.c
+++ b/ext/win32ole/win32ole.c
@@ -79,7 +79,7 @@
#define WC2VSTR(x) ole_wc2vstr((x), TRUE)
-#define WIN32OLE_VERSION "0.6.2"
+#define WIN32OLE_VERSION "0.6.3"
typedef HRESULT (STDAPICALLTYPE FNCOCREATEINSTANCEEX)
(REFCLSID, IUnknown*, DWORD, COSERVERINFO*, DWORD, MULTI_QI*);
@@ -1739,7 +1739,7 @@ ole_show_help(helpfile, helpcontext)
* object or WIN32OLE_METHOD object or helpfile.
*
* excel = WIN32OLE.new('Excel.Application')
- * typeobj = excel.ole_obj_help
+ * typeobj = excel.ole_type
* WIN32OLE.ole_show_help(typeobj)
*/
static VALUE
@@ -2945,15 +2945,15 @@ fole_func_methods( self )
/*
* call-seq:
- * WIN32OLE#ole_obj_help
+ * WIN32OLE#ole_type
*
* Returns WIN32OLE_TYPE object.
*
* excel = WIN32OLE.new('Excel.Application')
- * tobj = excel.ole_obj_help
+ * tobj = excel.ole_type
*/
static VALUE
-fole_obj_help( self )
+fole_type( self )
VALUE self;
{
unsigned int index;
@@ -6600,7 +6600,8 @@ Init_win32ole()
rb_define_method(cWIN32OLE, "ole_method", fole_method_help, 1);
rb_define_alias(cWIN32OLE, "ole_method_help", "ole_method");
- rb_define_method(cWIN32OLE, "ole_obj_help", fole_obj_help, 0);
+ rb_define_method(cWIN32OLE, "ole_type", fole_type, 0);
+ rb_define_alias(cWIN32OLE, "ole_obj_help", "ole_type");
rb_define_method(cWIN32OLE, "ole_typelib", fole_typelib, 0);
rb_define_const(cWIN32OLE, "VERSION", rb_str_new2(WIN32OLE_VERSION));