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

MinGWビルドで出ているinlineの警告に対処する。 #1355

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sakura_core/dlg/CDlgOpenFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ class CDlgOpenFile final : public IDlgOpenFile
) override;

//操作
inline bool DoModal_GetOpenFileName(WCHAR* pszPath, EFilter eAddFileter = EFITER_TEXT) override;
inline bool DoModal_GetSaveFileName(WCHAR* pszPath) override;
inline bool DoModalOpenDlg(SLoadInfo* pLoadInfo,
bool DoModal_GetOpenFileName(WCHAR* pszPath, EFilter eAddFileter = EFITER_TEXT) override;
bool DoModal_GetSaveFileName(WCHAR* pszPath) override;
bool DoModalOpenDlg(SLoadInfo* pLoadInfo,
std::vector<std::wstring>* pFilenames,
bool bOptions = true) override;
inline bool DoModalSaveDlg(SSaveInfo* pSaveInfo, bool bSimpleMode) override;
bool DoModalSaveDlg(SSaveInfo* pSaveInfo, bool bSimpleMode) override;

// 設定フォルダ相対ファイル選択(共有データ,ini位置依存)
static BOOL SelectFile(HWND parent, HWND hwndCtl, const WCHAR* filter,
Expand Down