Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor Texteditor code to ImHex standards. #1891

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Sep 5, 2024

  1. Refactor Texteditor code to ImHex standards.

    There is no code added or removed. All changes are to make Text editor code look more like the rest of ImHex.
    - All member variable names that used a convention like in `mFieldVariable` were switched to the common ImHex convention of `m_fieldVariable`.
    - All member function names that used pascal case were switched to the common ImHex convention of camel case.
    - All int, unsigned int, unsigned long ... were switched to int32_t, uint32_t, uint64_t,... I used those because TextEditor has no access to the ImHex headers where the types are defined.
    - Local variable names that were cryptic were given more descriptive ones.
    - Other changes include a few fixes from cppCheck mostly for variable scope.
    paxcut committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    81984d0 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. Configuration menu
    Copy the full SHA
    16a28f3 View commit details
    Browse the repository at this point in the history