@@ -42,7 +42,7 @@ bool ButtonComboInfoIF::getMetaOptions(const ButtonComboModule_MetaOptionsOut &o
4242
4343void ButtonComboInfoIF::setMetaOptions (const ButtonComboModule_MetaOptions options) {
4444 mLabel = options.label ;
45- DEBUG_FUNCTION_LINE (" Updated label to: \" %s\" , for %08X " , mLabel .c_str (), getHandle ().handle );
45+ DEBUG_FUNCTION_LINE (" Updated label to: \" %s\" , for %p " , mLabel .c_str (), getHandle ().handle );
4646}
4747
4848ButtonComboModule_CallbackOptions ButtonComboInfoIF::getCallbackOptions () const {
@@ -52,15 +52,15 @@ ButtonComboModule_CallbackOptions ButtonComboInfoIF::getCallbackOptions() const
5252void ButtonComboInfoIF::setCallbackOptions (const ButtonComboModule_CallbackOptions options) {
5353 mCallback = options.callback ;
5454 mContext = options.context ;
55- DEBUG_FUNCTION_LINE (" Updated callback to: %08X(%08X ), for %s %08X " , mCallback , mContext , mLabel .c_str (), getHandle ().handle );
55+ DEBUG_FUNCTION_LINE (" Updated callback to: %p(%p ), for %s handle: %p " , mCallback , mContext , mLabel .c_str (), getHandle ().handle );
5656}
5757
5858uint32_t ButtonComboInfoIF::getCombo () const {
5959 return mCombo ;
6060}
6161void ButtonComboInfoIF::setCombo (const ButtonComboModule_Buttons combo) {
6262 mCombo = combo;
63- DEBUG_FUNCTION_LINE (" Updated combo to: %08X, for %s %08X " , mCombo , mLabel .c_str (), getHandle ().handle );
63+ DEBUG_FUNCTION_LINE (" Updated combo to: %08X, for %s handle: %p " , mCombo , mLabel .c_str (), getHandle ().handle );
6464 resetPrevInput ();
6565}
6666
@@ -70,7 +70,7 @@ ButtonComboModule_ComboStatus ButtonComboInfoIF::getStatus() const {
7070
7171void ButtonComboInfoIF::setStatus (const ButtonComboModule_ComboStatus status) {
7272 mStatus = status;
73- DEBUG_FUNCTION_LINE (" Updated status to: %08X, for %s %08X " , mStatus , mLabel .c_str (), getHandle ().handle );
73+ DEBUG_FUNCTION_LINE (" Updated status to: %08X, for %s handle: %p " , mStatus , mLabel .c_str (), getHandle ().handle );
7474}
7575
7676ButtonComboModule_ControllerTypes ButtonComboInfoIF::getControllerMask () const {
@@ -79,7 +79,7 @@ ButtonComboModule_ControllerTypes ButtonComboInfoIF::getControllerMask() const {
7979
8080void ButtonComboInfoIF::setControllerMask (const ButtonComboModule_ControllerTypes mask) {
8181 mControllerMask = mask;
82- DEBUG_FUNCTION_LINE (" Updated controllerMask to: %08X, for %s %08X " , mControllerMask , mLabel .c_str (), getHandle ().handle );
82+ DEBUG_FUNCTION_LINE (" Updated controllerMask to: %08X, for %s handle: %p " , mControllerMask , mLabel .c_str (), getHandle ().handle );
8383 resetPrevInput ();
8484}
8585
0 commit comments