-
Notifications
You must be signed in to change notification settings - Fork 163
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
Vistaスタイルのファイルダイアログ使用時に名前を付けて保存の文字コードセット, 改行コード, BOM指定が有効に動作しない問題を修正 #874
Vistaスタイルのファイルダイアログ使用時に名前を付けて保存の文字コードセット, 改行コード, BOM指定が有効に動作しない問題を修正 #874
Conversation
@@ -812,6 +812,7 @@ bool CDlgOpenFile_CommonItemDialog::DoModalSaveDlg( SSaveInfo* pSaveInfo, bool b | |||
else { | |||
m_nCharCode = pSaveInfo->eCharCode; | |||
m_bBom = pSaveInfo->bBomExist; | |||
m_cEol = pSaveInfo->cEol; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
memo : ここの指定は実は不要な事が分かった。pSaveInfo->cEol
の値が EOL_NONE
で、m_cEol
の型 CEol
のデフォルトコンストラクタでも EOL_NONE
が設定されるので。でも明示的に設定しておいたほうが気分的に安心する。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#874 (comment)
指摘1件の対応をお願いしたいです。
他は問題なさげに見えます。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
対応ありがとうございます。LGTMです。
初見でもうマージまで済んでいました。関係ありそうなログです。参考に。 |
少しログを見てみましたが、多分本件には直接関係していない話題だと思います。 |
「これ俺が質問したときのログやん!」と昔のハンドルをカミングアウトしてみたり。
ディープですね。(こっちの話も本件とは関係なさそうです。 現状で、ビューコマンダーがアンドゥさんを指揮しているのを、 というか、かなり強引に単体テストの導入を進めてきたのは、 テストなしで「えいやっ!」って受け入れするとやっぱり不具合が出ますし、要件に対して機能を満たすかの確認を細かく重ねていくことが、仕事じゃなくてもやっぱり大事なのかな、と思っています。 |
…g_DoModalSaveDlg_2nd Vistaスタイルのファイルダイアログ使用時に名前を付けて保存の文字コードセット, 改行コード, BOM指定が有効に動作しない問題を修正
#873 で報告した問題を解消する修正を行いました。