--- kdelibs.org/kdeprint/kprinterimpl.cpp Mon May 7 08:01:44 2001 +++ kdelibs/kdeprint/kprinterimpl.cpp Tue May 22 23:56:01 2001 @@ -78,7 +78,9 @@ p->setErrorMessage(i18n("Cannot copy multiple files into one file.")); return false; } - else if (system(QString::fromLatin1("%1 %2 %3").arg((flag?"mv":"cp")).arg(f[0]).arg(p->outputFileName()).latin1()) != 0) + //else if (system(QString::fromLatin1("%1 %2 %3").arg((flag?"mv":"cp")).arg(f[0]).arg(p->outputFileName()).latin1()) != 0) + // JungHo Park + else if (system(QString::fromLocal8Bit("%1 %2 %3").arg((flag?"mv":"cp")).arg(f[0]).arg(p->outputFileName()).local8Bit().data()) != 0) { p->setErrorMessage(i18n("Cannot save print file. Check that you have write access to it.")); return false;