IO_ReadOnly->QIODevice::ReadOnly

svn path=/trunk/KDE/kdebase/workspace/; revision=478963
icc-effect-5.14.5
Laurent Montel 2005-11-08 15:54:49 +00:00
parent 1c3e66488b
commit d364e07332
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ void copy(const QString &src, const QString &dest)
{
QFile copyInput(src);
QFile copyOutput(dest);
if(!copyInput.open(IO_ReadOnly)){
if(!copyInput.open(QIODevice::ReadOnly)){
kdWarning() << "Couldn't open " << src << endl;
return;
}