Skip to content

Commit ed11647

Browse files
committed
added default string for appclassid
1 parent 8427984 commit ed11647

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Flux/flxFlux.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ class flxApplication;
2222
// bool spark_start(bool bAutoLoad = true);
2323
// bool spark_loop();
2424

25+
// Define a default app class name
26+
#define kDefaultAppClassName "SFE-FLUX-APPLICATION"
27+
2528
// Define the main framework class - note it's a singleton
2629
class flxFlux : public flxObjectContainer
2730
{
@@ -297,7 +300,7 @@ class flxFlux : public flxObjectContainer
297300

298301
// Note private constructor...
299302
flxFlux()
300-
: _v_major{0}, _v_minor{0}, _v_point{0}, _v_build{0}, _v_desc{""}, _v_idprefix{"0000"}, _appClassID{nullptr},
303+
: _v_major{0}, _v_minor{0}, _v_point{0}, _v_build{0}, _v_desc{""}, _v_idprefix{"0000"}, _appClassID{kDefaultAppClassName},
301304
_theApplication{nullptr}, _token{0}, _hasToken{false}, _verboseDevNames{false}
302305
{
303306

0 commit comments

Comments
 (0)