Do not enable checking ntfs permissions for checking read only status.
This commit is contained in:
parent
63c40f3ad0
commit
ca3c5c8532
|
@ -728,14 +728,7 @@ bool TMainWindow::FileSave()
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup++; // turn checking on
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
const bool isFileWritable = QFileInfo(curFile).isWritable();
|
const bool isFileWritable = QFileInfo(curFile).isWritable();
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup--; // turn it off again
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
|
|
||||||
if (not isFileWritable)
|
if (not isFileWritable)
|
||||||
{
|
{
|
||||||
QMessageBox messageBox(this);
|
QMessageBox messageBox(this);
|
||||||
|
@ -2593,13 +2586,7 @@ void TMainWindow::UpdateWindowTitle()
|
||||||
bool isFileWritable = true;
|
bool isFileWritable = true;
|
||||||
if (not curFile.isEmpty())
|
if (not curFile.isEmpty())
|
||||||
{
|
{
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup++; // turn checking on
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
isFileWritable = QFileInfo(curFile).isWritable();
|
isFileWritable = QFileInfo(curFile).isWritable();
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup--; // turn it off again
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
showName = StrippedName(curFile);
|
showName = StrippedName(curFile);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -3049,14 +3049,8 @@ bool MainWindow::on_actionSave_triggered()
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup++; // turn checking on
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
const bool isFileWritable = QFileInfo(qApp->GetPatternPath()).isWritable();
|
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup--; // turn it off again
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
|
|
||||||
|
const bool isFileWritable = QFileInfo(qApp->GetPatternPath()).isWritable();
|
||||||
if (not isFileWritable)
|
if (not isFileWritable)
|
||||||
{
|
{
|
||||||
QMessageBox messageBox(this);
|
QMessageBox messageBox(this);
|
||||||
|
@ -5862,13 +5856,7 @@ void MainWindow::UpdateWindowTitle()
|
||||||
bool isFileWritable = true;
|
bool isFileWritable = true;
|
||||||
if (not qApp->GetPatternPath().isEmpty())
|
if (not qApp->GetPatternPath().isEmpty())
|
||||||
{
|
{
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup++; // turn checking on
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
isFileWritable = QFileInfo(qApp->GetPatternPath()).isWritable();
|
isFileWritable = QFileInfo(qApp->GetPatternPath()).isWritable();
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup--; // turn it off again
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (not patternReadOnly && isFileWritable)
|
if (not patternReadOnly && isFileWritable)
|
||||||
|
|
|
@ -358,14 +358,8 @@ bool WatermarkWindow::on_actionSave_triggered()
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup++; // turn checking on
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
const bool isFileWritable = QFileInfo(m_curFile).isWritable();
|
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup--; // turn it off again
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
|
|
||||||
|
const bool isFileWritable = QFileInfo(m_curFile).isWritable();
|
||||||
if (not isFileWritable)
|
if (not isFileWritable)
|
||||||
{
|
{
|
||||||
QMessageBox messageBox(this);
|
QMessageBox messageBox(this);
|
||||||
|
@ -494,13 +488,7 @@ void WatermarkWindow::UpdateWindowTitle()
|
||||||
bool isFileWritable = true;
|
bool isFileWritable = true;
|
||||||
if (not m_curFile.isEmpty())
|
if (not m_curFile.isEmpty())
|
||||||
{
|
{
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup++; // turn checking on
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
isFileWritable = QFileInfo(m_curFile).isWritable();
|
isFileWritable = QFileInfo(m_curFile).isWritable();
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup--; // turn it off again
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isFileWritable)
|
if (isFileWritable)
|
||||||
|
|
|
@ -165,14 +165,7 @@ void VAbstractConverter::ReserveFile() const
|
||||||
.arg(info.absoluteDir().absolutePath(), info.baseName(), GetFormatVersionStr(), info.completeSuffix());
|
.arg(info.absoluteDir().absolutePath(), info.baseName(), GetFormatVersionStr(), info.completeSuffix());
|
||||||
if (not SafeCopy(m_convertedFileName, reserveFileName, error))
|
if (not SafeCopy(m_convertedFileName, reserveFileName, error))
|
||||||
{
|
{
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup++; // turn checking on
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
const bool isFileWritable = info.isWritable();
|
const bool isFileWritable = info.isWritable();
|
||||||
#ifdef Q_OS_WIN32
|
|
||||||
qt_ntfs_permission_lookup--; // turn it off again
|
|
||||||
#endif /*Q_OS_WIN32*/
|
|
||||||
|
|
||||||
if (not IsReadOnly() && isFileWritable)
|
if (not IsReadOnly() && isFileWritable)
|
||||||
{
|
{
|
||||||
const QString errorMsg(tr("Error creating a reserv copy: %1.").arg(error));
|
const QString errorMsg(tr("Error creating a reserv copy: %1.").arg(error));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user