diff options
| author | robojumper <robojumper@gmail.com> | 2025-05-04 13:53:32 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2025-05-10 22:24:13 +0200 |
| commit | a800282135ee151fc1caff780cc1e0d988657d6e (patch) | |
| tree | 20df86aaa41de66a9d8c7bfe89ab5197329391dd /src/d/d_base.cpp | |
| parent | a8023aa4fa5781b3543dae1c9d10de9f03f3b711 (diff) | |
Refactoring
Diffstat (limited to 'src/d/d_base.cpp')
| -rw-r--r-- | src/d/d_base.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_base.cpp b/src/d/d_base.cpp index 2e1701b4..0f815230 100644 --- a/src/d/d_base.cpp +++ b/src/d/d_base.cpp @@ -22,7 +22,7 @@ int dBase_c::preExecute() { if (fBase_c::preExecute() == 0) { return NOT_READY; } - if (s_ExecuteControlFlags && !isProcControlFlag(s_ExecuteControlFlags)) { + if (s_ExecuteControlFlags && !isBasePropertyFlag(s_ExecuteControlFlags)) { return NOT_READY; } return SUCCEEDED; @@ -41,7 +41,7 @@ int dBase_c::preDraw() { if (fBase_c::preDraw() == NOT_READY) { return NOT_READY; } - if (s_DrawControlFlags && !isProcControlFlag(s_DrawControlFlags)) { + if (s_DrawControlFlags && !isBasePropertyFlag(s_DrawControlFlags)) { return NOT_READY; } return SUCCEEDED; |
