Skip to content

Commit

Permalink
add setting of serial numbering filenames 8
Browse files Browse the repository at this point in the history
  • Loading branch information
katahiromz committed Apr 18, 2024
1 parent 8eba7fe commit 035ed0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2934,7 +2934,7 @@ BOOL __fastcall XgNumberingSave(HWND hwnd, BOOL bPattern)
for (INT iRetry = 1; iRetry < MAX_PATH; ++iRetry)
{
XGStringW strName = szFileName;
strName += XGStringW(iRetry, L'~'); // チルダを(iRetry + 1)個追加
strName += XGStringW(iRetry, L'~'); // チルダをiRetry個追加
strName += strDotExt.c_str(); // 拡張子を追加。
if (!PathFileExistsW(strName.c_str()))
{
Expand Down

0 comments on commit 035ed0c

Please sign in to comment.