1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-21 20:27:13 +01:00

Uncomment exceptions in the signals and slots creation and retrieval.

This commit is contained in:
Sandu Liviu Catalin 2017-02-22 20:41:11 +02:00
parent e6fc637452
commit 2a4f4853ea

View File

@ -1569,7 +1569,7 @@ void Signal::Remove(const StackStrF & name)
// Validate the signal name // Validate the signal name
if (name.mLen <= 0) 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 // Create a copy of the name
const String sname(name.mPtr, name.mLen); const String sname(name.mPtr, name.mLen);
@ -1603,7 +1603,7 @@ const LightObj & Signal::Fetch(const StackStrF & name)
// Validate the signal name // Validate the signal name
if (name.mLen <= 0) 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 // Create a copy of the name
const String sname(name.mPtr, name.mLen); const String sname(name.mPtr, name.mLen);
@ -1618,7 +1618,7 @@ const LightObj & Signal::Fetch(const StackStrF & name)
} }
} }
// No such signal exists // 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! // SHOULD NOT REACH THIS POINT!
static LightObj slo; static LightObj slo;
return slo; return slo;