Skip to content

Commit

Permalink
Merge pull request #1355 from berryzplus/feature/remove_inline_keyword
Browse files Browse the repository at this point in the history
MinGWビルドで出ているinlineの警告に対処する。
  • Loading branch information
berryzplus authored Jul 31, 2020
2 parents 66cda09 + dd420cb commit b9e21f8
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit b9e21f8

Please sign in to comment.