test/cfg/windows.cpp: Added test for #6571, Library::isNotLibraryFunction() should return true for methods.

This commit is contained in:
Daniel Marjamäki 2015-03-08 16:23:54 +01:00
parent 2d8a6c7b89
commit 780a530e0e
1 changed files with 2 additions and 2 deletions

View File

@ -7,12 +7,12 @@
//
class CSharedFilesCtrl {
void OpenFile(const CShareableFile* file);
void OpenFile(const CShareableFile* file, int, int);
afx_msg void OnNmDblClk(NMHDR *pNMHDR, LRESULT *pResult);
};
void CSharedFilesCtrl::OnNmDblClk(NMHDR* /*pNMHDR*/, LRESULT* pResult) {
if (file)
OpenFile(file);
OpenFile(file,0,0); // <- not the windows OpenFile function
}