Jlo fixes/my widgets recursion error inheritance#28
Open
johannes-lode wants to merge 16 commits intopvbrowser:masterfrom
Open
Jlo fixes/my widgets recursion error inheritance#28johannes-lode wants to merge 16 commits intopvbrowser:masterfrom
johannes-lode wants to merge 16 commits intopvbrowser:masterfrom
Conversation
To avoid time calculation errors by mixing absolute time values with relative time value in the same class, the interface was changed for the application of relative amounts of time against absolute points in time. Added interface for simple formatting options of time differences.
Intermediate commit for transfer to another workstation.
Meanwhile added a proxy interface, so the traditional interface of operating with two operands of rlTimeEx is available. One small exception is there of returning double for the difference of two rlTimeEx object by default and returning rlTimeEx objects only on request by casting the second operand to RelativeTime(rltime_object).
The widget tree recursion counter could have been reset unintentionally (see left over assert()'s) while walking and maintaining the tree. This led to browser crashes, maybe memory leaks and maybe CPU consumption. A redesign of the calling interface has proven to fix these problems which where visible in a large application. Minor fix of control character interpretation, where under Womdows 7 CP1250 some user inputs triggered false positive replacements and some missed replacements.
Assertions and type conversion rules ensure to combine only valid types of time (only one absolute time in addition or subtraction, all others need to be relative time values)
jlo-fixes/rltime-relative-time-adjustments Conflicts: .gitignore - resolved by mix-in rllib/lib/lib.pro - resolved by mix-in rllib/lib/rltime_v2.cpp - resolved by using my version rllib/lib/rltime_v2.h - resolved by using my version
'origin/jlo-fixes/rltime-relative-time-adjustments' into jlo-fixes/pvbrowser-qwtplotwidget-time-type
'origin/jlo-fixes/pvbrowser-qwtplotwidget-time-type' into jlo-fixes/MyWidgets-recursion-error-inheritance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix update error for widget tree on recursive tree walks.
This problem lead to browser crash, when recursion path was lost.