forked from qt-creator/qt-creator
Clang: More renaming fixes
Change-Id: If796869b26fc6faf5919041368fb26e8a42ae8a2 Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -359,13 +359,13 @@ void Document::setDirty()
|
||||
void Document::checkIfNull() const
|
||||
{
|
||||
if (isNull())
|
||||
throw TranslationUnitIsNullException();
|
||||
throw DocumentIsNullException();
|
||||
}
|
||||
|
||||
void Document::checkIfFileExists() const
|
||||
{
|
||||
if (!fileExists())
|
||||
throw TranslationUnitFileNotExitsException(d->filePath);
|
||||
throw DocumentFileDoesNotExistException(d->filePath);
|
||||
}
|
||||
|
||||
bool Document::fileExists() const
|
||||
|
||||
Reference in New Issue
Block a user