test/cfg/windows.cpp: Added test for #6571, Library::isNotLibraryFunction() should return true for methods.
This commit is contained in:
parent
2d8a6c7b89
commit
780a530e0e
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue