summaryrefslogtreecommitdiff
authorkergoth <kergoth>2002-11-29 18:58:15 (UTC)
committer kergoth <kergoth>2002-11-29 18:58:15 (UTC)
commit17906c7fefc001c74af2141610c23c28c28a4e52 (patch) (side-by-side diff)
tree527fe02d74b54debefd4f66eb5989e14a6d2d1ba
parentd85d0022270da220f219764593c98dc8f28439b7 (diff)
downloadopie-17906c7fefc001c74af2141610c23c28c28a4e52.zip
opie-17906c7fefc001c74af2141610c23c28c28a4e52.tar.gz
opie-17906c7fefc001c74af2141610c23c28c28a4e52.tar.bz2
Compile fix
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/ipkg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/aqpkg/ipkg.cpp b/noncore/settings/aqpkg/ipkg.cpp
index 1efe030..407abe9 100644
--- a/noncore/settings/aqpkg/ipkg.cpp
+++ b/noncore/settings/aqpkg/ipkg.cpp
@@ -409,25 +409,25 @@ QStringList* Ipkg :: getList( const QString &packageFilename, const QString &des
cout << "Try to open " << packageFileDir << endl;
if ( !f.open(IO_ReadOnly) )
{
// Couldn't open from dest, try from /
cout << "Could not open:" << packageFileDir << endl;
f.close();
packageFileDir = "/usr/lib/ipkg/info/"+packageFilename+".list";
f.setName( packageFileDir );
qDebug( "Try to open %s", packageFileDir.latin1() );
if ( ! f.open(IO_ReadOnly) )
{
- qDebug( "Could not open: %s", packageFileDir );
+ qDebug( "Could not open: %s", packageFileDir.latin1() );
emit outputText( QString( "Could not open :" ) + packageFileDir );
return (QStringList*)0;
}
}
QStringList *fileList = new QStringList();
QTextStream t( &f );
while ( !t.eof() )
*fileList += t.readLine();
f.close();
return fileList;
}