@RaiKoHoff
This doesn't seem correct?
|
case IDM_FILE_SAVE: { |
|
FileSave((FileWatching.FileWatchingMode <= FWM_DONT_CARE) ? FileSave(FSF_SaveAlways) : FSF_None); |
|
} break; |
The nested FileSave() returns a bool which is passed as FileSaveFlags (a mask type) to the first FileSave(). I think this should be just
FileSave((FileWatching.FileWatchingMode <= FWM_DONT_CARE) ? FSF_SaveAlways : FSF_None);
@RaiKoHoff
This doesn't seem correct?
Notepad3/src/Notepad3.c
Lines 4787 to 4789 in 8061d2e
The nested
FileSave()returns aboolwhich is passed asFileSaveFlags(a mask type) to the firstFileSave(). I think this should be just