Skip to content

Commit 59a1589

Browse files
committed
align naming of isMultiInstance
1 parent 21e53d1 commit 59a1589

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openzwave-shared",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "Node.JS bindings for OpenZWave including management and security functions",
55
"main": "./lib/openzwave-shared.js",
66
"types": "./types/openzwave-shared.d.ts",

src/openzwave-groups.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ namespace OZW {
162162
*
163163
*/
164164
// ===================================================================
165-
NAN_METHOD(OZW::IsGroupMultiInstance)
165+
NAN_METHOD(OZW::IsMultiInstance)
166166
// ===================================================================
167167
{
168168
Nan::HandleScope scope;

src/openzwave.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ namespace OZW {
8282
Nan::SetPrototypeMethod(t, "addAssociation", OZW::AddAssociation);
8383
Nan::SetPrototypeMethod(t, "removeAssociation", OZW::RemoveAssociation);
8484
#ifdef OPENZWAVE_16
85-
Nan::SetPrototypeMethod(t, "isGroupMultiInstance", OZW::IsGroupMultiInstance);
85+
Nan::SetPrototypeMethod(t, "isMultiInstance", OZW::IsMultiInstance);
8686
#endif
8787

8888
// openzwave-management.cc

src/openzwave.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ namespace OZW {
7878
static NAN_METHOD(AddAssociation);
7979
static NAN_METHOD(RemoveAssociation);
8080
#ifdef OPENZWAVE_16
81-
static NAN_METHOD(IsGroupMultiInstance);
81+
static NAN_METHOD(IsMultiInstance);
8282
#endif
8383
#if OPENZWAVE_SECURITY == 1
8484
static NAN_METHOD(AddNode);

0 commit comments

Comments
 (0)