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

編集ウインドウへの参照をリファクタリングする #1744

Merged

Commits on Oct 17, 2021

  1. Configuration menu
    Copy the full SHA
    3ca63d7 View commit details
    Browse the repository at this point in the history
  2. 冗長なメンバ変数 CEditVIew::m_pcEditWnd を削除する

    CEditWndのインスタンスにはグローバル変数のようにアクセスできる。このため、コンストラクタでCEditWndのインスタンスを要求してクラス内外でのアクセスに流用する構造は無駄と考えられる。
    sanomari committed Oct 17, 2021
    Configuration menu
    Copy the full SHA
    67f8ac8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d83ad79 View commit details
    Browse the repository at this point in the history
  4. CEditVIew::m_pcEditWnd置換2 パターン置換49箇所

    置換パターン
    \b((m_)?pc?)?(Edit)?View(Dst)?->m_pcEditWnd->
    sanomari committed Oct 17, 2021
    Configuration menu
    Copy the full SHA
    2e458ad View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    37b1cb2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e64af20 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    000c066 View commit details
    Browse the repository at this point in the history
  8. CEditDoc::m_pcEditWnd置換2 パターン置換66箇所

    \b((m_)?pc?)?(Edit)?Doc(Ref)?->m_pcEditWnd->
    sanomari committed Oct 17, 2021
    Configuration menu
    Copy the full SHA
    2bd655f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    889939f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f477971 View commit details
    Browse the repository at this point in the history
  11. グローバル変数g_pcEditWndを削除する

    CEditWndのインスタンスはクラスのstatic変数に保持されるので、グローバル変数に持つと二重保持になり無駄です。
    sanomari committed Oct 17, 2021
    Configuration menu
    Copy the full SHA
    4b341c4 View commit details
    Browse the repository at this point in the history