From: Karai C. <ck...@us...> - 2004-08-17 23:03:50
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28257/krusader_kde3/krusader/VFS Modified Files: krarchandler.cpp Log Message: FIXED: internationalization bugs, illegal usage of QString::latin1() Index: krarchandler.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/krarchandler.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** krarchandler.cpp 27 Jul 2004 22:31:28 -0000 1.9 --- krarchandler.cpp 17 Aug 2004 17:03:39 -0000 1.10 *************** *** 304,308 **** // check the return value if ( !proc.normalExit() || proc.exitStatus() != 0 ) { ! KMessageBox::error( krApp, i18n( "Failed to pack: " ) + dest.latin1(), i18n( "Error" ) ); return false; } --- 304,308 ---- // check the return value if ( !proc.normalExit() || proc.exitStatus() != 0 ) { ! KMessageBox::error( krApp, i18n( "Failed to pack: " ) + dest, i18n( "Error" ) ); return false; } *************** *** 311,315 **** if ( krConfig->readBoolEntry( "Test Archives", _TestArchives ) && !test( dest, type, count ) ) { ! KMessageBox::error( krApp, i18n( "Failed to pack" ) + dest.latin1(), i18n( "Error" ) ); return false; } --- 311,315 ---- if ( krConfig->readBoolEntry( "Test Archives", _TestArchives ) && !test( dest, type, count ) ) { ! KMessageBox::error( krApp, i18n( "Failed to pack: " ) + dest, i18n( "Error" ) ); return false; } |