mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-20 19:57:12 +01:00
Uncomment exceptions in the signals and slots creation and retrieval.
This commit is contained in:
parent
e6fc637452
commit
2a4f4853ea
@ -1569,7 +1569,7 @@ void Signal::Remove(const StackStrF & name)
|
||||
// Validate the signal name
|
||||
if (name.mLen <= 0)
|
||||
{
|
||||
//STHROWF("Signals without names cannot be removed manually");
|
||||
STHROWF("Signals without names cannot be removed manually");
|
||||
}
|
||||
// Create a copy of the name
|
||||
const String sname(name.mPtr, name.mLen);
|
||||
@ -1603,7 +1603,7 @@ const LightObj & Signal::Fetch(const StackStrF & name)
|
||||
// Validate the signal name
|
||||
if (name.mLen <= 0)
|
||||
{
|
||||
//STHROWF("Signals without names cannot be retrieved manually");
|
||||
STHROWF("Signals without names cannot be retrieved manually");
|
||||
}
|
||||
// Create a copy of the name
|
||||
const String sname(name.mPtr, name.mLen);
|
||||
@ -1618,7 +1618,7 @@ const LightObj & Signal::Fetch(const StackStrF & name)
|
||||
}
|
||||
}
|
||||
// No such signal exists
|
||||
//STHROWF("Unknown signal named (%s)", sname.c_str());
|
||||
STHROWF("Unknown signal named (%s)", sname.c_str());
|
||||
// SHOULD NOT REACH THIS POINT!
|
||||
static LightObj slo;
|
||||
return slo;
|
||||
|
Loading…
x
Reference in New Issue
Block a user