minor change
This commit is contained in:
parent
aaae910c59
commit
d484c790a2
|
@ -178,17 +178,6 @@ bool Project::unitsModifiedSince(const QDateTime& time)
|
|||
bool Project::modified() const
|
||||
{
|
||||
return mModified;
|
||||
// Project file modified? Done
|
||||
// if (mModified)
|
||||
// return true;// quick exit avoids loop over all units
|
||||
|
||||
// // Otherwise, check all units
|
||||
// foreach (const PProjectUnit& unit, mUnits){
|
||||
// if (unit->modified()) {
|
||||
// return true;
|
||||
// }
|
||||
// }
|
||||
// return false;
|
||||
}
|
||||
|
||||
bool Project::modifiedSince(const QDateTime &time)
|
||||
|
|
|
@ -518,8 +518,13 @@ void ASMSyntaxer::next()
|
|||
case '/':
|
||||
SlashProc();
|
||||
break;
|
||||
case '#':
|
||||
case ';':
|
||||
if (mATT) {
|
||||
SymbolProc();
|
||||
} else
|
||||
CommentProc();
|
||||
break;
|
||||
case '#':
|
||||
CommentProc();
|
||||
break;
|
||||
case '.':
|
||||
|
|
Loading…
Reference in New Issue