diff options
author | Francois Andriot <francois.andriot@free.fr> | 2013-10-15 03:34:06 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-10-15 03:34:06 +0200 |
commit | ffc754b43852a6450906ad995924a0dc36243613 (patch) | |
tree | e223e801f0f0efed5ebc8defbc9b9ac38eae7f94 | |
parent | 026b9afdcbc571f154878fca966c14dfee4c2f50 (diff) | |
download | tdeadmin-ffc754b43852a6450906ad995924a0dc36243613.tar.gz tdeadmin-ffc754b43852a6450906ad995924a0dc36243613.zip |
kpackage: Fix utf8 in path
This resolves Bug 1381
-rw-r--r-- | kpackage/rpmInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kpackage/rpmInterface.cpp b/kpackage/rpmInterface.cpp index a881c44..c4e728e 100644 --- a/kpackage/rpmInterface.cpp +++ b/kpackage/rpmInterface.cpp @@ -578,7 +578,7 @@ TQString RPM::doinstP(int installFlags, const TQStringList &files, bool &test) for (TQStringList::ConstIterator it = files.begin(); it != files.end(); ++it ) { s += " "; - s += *it; + s += (*it).utf8(); } if (installFlags>>4 & 1) |