Remove the window modified indicator feature from non-Mac again.

It creates too much headache with widgets calling setWindowTitle
themselves and Qt spilling out warnings about missing "[*]".

Reviewed-by: Thorbjørn Lindeijer
This commit is contained in:
con
2010-04-21 14:11:36 +02:00
parent ec688e5c62
commit 62e57edf4c
2 changed files with 5 additions and 5 deletions

View File

@@ -1529,7 +1529,9 @@ void EditorManager::updateActions()
fName = curEditor->displayName();
}
#ifdef Q_WS_MAC
window()->setWindowModified(curEditor->file()->isModified());
#endif
if (curEditor->file()->isModified() && curEditor->file()->isReadOnly()) {
// we are about to change a read-only file, warn user
showEditorInfoBar(QLatin1String("Core.EditorManager.MakeWritable"),
@@ -1538,8 +1540,10 @@ void EditorManager::updateActions()
} else {
hideEditorInfoBar(QLatin1String("Core.EditorManager.MakeWritable"));
}
#ifdef Q_WS_MAC
} else { // curEditor
window()->setWindowModified(false);
#endif
}
m_d->m_saveAction->setEnabled(curEditor != 0 && curEditor->file()->isModified());

View File

@@ -926,14 +926,10 @@ void SessionManager::updateWindowTitle()
if (m_core->editorManager()->currentEditor()) {
QFileInfo fi(m_core->editorManager()->currentEditor()->file()->fileName());
QString fileName = fi.fileName();
// [*] is placeholder for a windowModified marker, set in editor manager
if (!fileName.isEmpty())
windowTitle.prepend(fileName + "[*] - ");
else
windowTitle.append("[*]"); // placeholder will be removed by Qt)
windowTitle.prepend(fileName + " - ");
m_core->mainWindow()->setWindowFilePath(fi.absoluteFilePath());
} else {
windowTitle.append("[*]"); // placeholder for windowModified property (is removed by Qt)
m_core->mainWindow()->setWindowFilePath(QString());
}
m_core->mainWindow()->setWindowTitle(windowTitle);