diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-12-31 17:07:42 +0900 |
---|---|---|
committer | git <[email protected]> | 2024-01-28 15:25:35 +0000 |
commit | 8af4ef30e57759d4f3994a56dbb38a6151f0bbd3 (patch) | |
tree | 512c4beede92e3a010583636e1dd6d46a5c832a0 /ext/win32ole/lib | |
parent | 1e2d088dd3d534958c4e010a6bcb815cce83c1b5 (diff) |
[ruby/win32ole] Move `WIN32OLE` prefixed error classes under `WIN32OLE`
https://github.com/ruby/win32ole/commit/1c95816168
Diffstat (limited to 'ext/win32ole/lib')
-rw-r--r-- | ext/win32ole/lib/win32ole.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/win32ole/lib/win32ole.rb b/ext/win32ole/lib/win32ole.rb index 5e20f104cd..f5c8a52c4a 100644 --- a/ext/win32ole/lib/win32ole.rb +++ b/ext/win32ole/lib/win32ole.rb @@ -25,7 +25,7 @@ if defined?(WIN32OLE) def ole_methods_safely ole_methods - rescue WIN32OLEQueryInterfaceError + rescue WIN32OLE::QueryInterfaceError [] end end |