Page 1 of 1
False modification claims
Posted: Sat Aug 11, 2012 8:34 pm
by kpeters58
Why does PB always tell me that my <project>.pbp has been modified while the project was closed when it hasn't?
I open a project, close PB, reopen PB - there's that message.
Same if I open a project, close the project, close PB, restart PB and reopen project....
Any ideas?
Thanks,
Kai
Re: False modification claims
Posted: Sat Aug 11, 2012 8:47 pm
by karmacomposer
Does this alter how the program compiles and run? Does it affect the resulting binary?
Mike
Re: False modification claims
Posted: Sun Aug 12, 2012 5:16 pm
by Zach
It shouldn't, Mike. the PBP file is just a project file, which contains various settings related to the project (compilation options and such I would imagine) and source file locations.
Its probably just a bug, I don't think anything is getting modified, although worth noting I have never had this problem myself.
Re: False modification claims
Posted: Tue Aug 14, 2012 7:33 pm
by kpeters58
Aside from the annoyance factor (and the desire to understand why what happens...) there do not seem to be any negative effects.
K
Re: False modification claims
Posted: Tue Aug 14, 2012 8:17 pm
by IdeasVacuum
It's possible that your Anti-Virus has tickled the file, especially if you use MS Security Essentials. No harm done.
Re: False modification claims
Posted: Tue Aug 14, 2012 8:57 pm
by freak
The message is because one of the source files in the project changed while the project was closed. There is no check for the project file itself.
You can enable or disable this check for each file individually in the project options (uncheck the 'Display a warning if file changed' checkbox for the files where you want it disabled.)
Re: False modification claims
Posted: Fri Aug 17, 2012 6:07 am
by karmacomposer
freak wrote:The message is because one of the source files in the project changed while the project was closed. There is no check for the project file itself.
You can enable or disable this check for each file individually in the project options (uncheck the 'Display a warning if file changed' checkbox for the files where you want it disabled.)
Good to know. Thank you.
Mike
Re: False modification claims
Posted: Fri Aug 17, 2012 6:45 pm
by kpeters58
Thanks for enlightening us with this valuable piece of information!
Cheers,
Kai