* 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.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7222 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
suke 2004-11-06 11:42:35 +00:00
parent e015d89352
commit 4cbaddcf8c
3 changed files with 22 additions and 6 deletions

View File

@ -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.

View File

@ -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}

View File

@ -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));