change error message

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@1018 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
w1z7ard
2008-05-15 05:11:27 +00:00
parent d19b6702ed
commit 6332d446d0

View File

@ -48,7 +48,7 @@ void QPresetEditorDialog::saveFile() {
QFile qfile(presetUrl());
if (!qfile.open(QIODevice::ReadWrite | QIODevice::Text)) {
QMessageBox::warning (0, "Preset File Error", QString(tr("There was a problem trying to save the preset \"%1\". The file may no longer exist or you may not have permission to read the file.")).arg(presetUrl()));
QMessageBox::warning (0, "Preset File Error", QString(tr("There was a problem trying to save the preset \"%1\". You may not have permission to write to the file.")).arg(presetUrl()));
return ;
}