Revert Chakra unicode patch as it both causes a FTBFS and seems to duplicate functionality already present

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1172772 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 14 years ago
parent 8b9f540b42
commit 5c38d91288

@ -33,7 +33,6 @@
// QT includes // QT includes
#include <tqapplication.h> #include <tqapplication.h>
#include <tqfile.h> #include <tqfile.h>
#include <tqtextcodec.h>
// KDE includes // KDE includes
#include <kdebug.h> #include <kdebug.h>
@ -331,20 +330,15 @@ void Arch::slotReceivedTOC( KProcess*, char* data, int length )
bool Arch::processLine( const TQCString &line ) bool Arch::processLine( const TQCString &line )
{ {
TQString columns[ 11 ]; TQString columns[ 11 ];
TQString unicode_line;
unsigned int pos = 0; unsigned int pos = 0;
int strpos, len; int strpos, len;
TQTextCodec *codec = TQTextCodec::codecForLocale();
unicode_line = codec->toUnicode( line );
// Go through our columns, try to pick out data, return silently on failure // Go through our columns, try to pick out data, return silently on failure
for ( TQPtrListIterator <ArchColumns>col( m_archCols ); col.current(); ++col ) for ( TQPtrListIterator <ArchColumns>col( m_archCols ); col.current(); ++col )
{ {
ArchColumns *curCol = *col; ArchColumns *curCol = *col;
strpos = curCol->pattern.search( unicode_line, pos ); strpos = curCol->pattern.search( line, pos );
len = curCol->pattern.matchedLength(); len = curCol->pattern.matchedLength();
if ( ( strpos == -1 ) || ( len > curCol->maxLength ) ) if ( ( strpos == -1 ) || ( len > curCol->maxLength ) )
@ -360,7 +354,7 @@ bool Arch::processLine( const TQCString &line )
pos = strpos + len; pos = strpos + len;
columns[curCol->colRef] = TQString::fromLocal8Bit( unicode_line.mid(strpos, len) ); columns[curCol->colRef] = TQString::fromLocal8Bit( line.mid(strpos, len) );
} }

@ -1533,7 +1533,7 @@ ArkWidget::action_extract()
it != selectedFiles.constEnd(); it != selectedFiles.constEnd();
++it ) ++it )
{ {
m_extractList->append( *it ); m_extractList->append( TQFile::encodeName( *it ) );
} }
if (!bOvwrt) if (!bOvwrt)

@ -32,7 +32,6 @@
// QT includes // QT includes
#include <tqfile.h> #include <tqfile.h>
#include <tqdir.h> #include <tqdir.h>
#include <tqtextcodec.h>
// KDE includes // KDE includes
#include <kdebug.h> #include <kdebug.h>
@ -97,7 +96,7 @@ bool RarArch::processLine( const TQCString &line )
if ( m_isFirstLine ) if ( m_isFirstLine )
{ {
m_entryFilename = TQString::fromLocal8Bit( unicode_line ); m_entryFilename = TQString::fromLocal8Bit( line );
m_entryFilename.remove( 0, 1 ); m_entryFilename.remove( 0, 1 );
m_isFirstLine = false; m_isFirstLine = false;
return true; return true;
@ -105,7 +104,7 @@ bool RarArch::processLine( const TQCString &line )
TQStringList list; TQStringList list;
TQStringList l2 = TQStringList::split( ' ', unicode_line ); TQStringList l2 = TQStringList::split( ' ', line );
list << m_entryFilename; // filename list << m_entryFilename; // filename
list << l2[ 0 ]; // size list << l2[ 0 ]; // size
@ -260,9 +259,7 @@ void RarArch::unarchFileInternal()
*kp << "-o-"; *kp << "-o-";
} }
TQTextCodec *codec = TQTextCodec::codecForLocale(); *kp << m_filename;
*kp << codec->fromUnicode(m_filename);
// if the file list is empty, no filenames go on the command line, // if the file list is empty, no filenames go on the command line,
// and we then extract everything in the archive. // and we then extract everything in the archive.
@ -271,11 +268,11 @@ void RarArch::unarchFileInternal()
TQStringList::Iterator it; TQStringList::Iterator it;
for ( it = m_fileList->begin(); it != m_fileList->end(); ++it ) for ( it = m_fileList->begin(); it != m_fileList->end(); ++it )
{ {
*kp << codec->fromUnicode(*it); *kp << (*it);
} }
} }
*kp << codec->fromUnicode(m_destDir); *kp << m_destDir ;
connect( kp, TQT_SIGNAL( receivedStdout(KProcess*, char*, int) ), connect( kp, TQT_SIGNAL( receivedStdout(KProcess*, char*, int) ),
TQT_SLOT( slotReceivedOutput(KProcess*, char*, int) ) ); TQT_SLOT( slotReceivedOutput(KProcess*, char*, int) ) );

@ -28,7 +28,6 @@
// Qt includes // Qt includes
#include <tqdir.h> #include <tqdir.h>
#include <tqtextcodec.h>
// KDE includes // KDE includes
#include <kdebug.h> #include <kdebug.h>
@ -209,9 +208,7 @@ void ZipArch::unarchFileInternal()
else else
*kp << "-n"; *kp << "-n";
TQTextCodec *codec = TQTextCodec::codecForLocale(); *kp << m_filename;
*kp << codec->fromUnicode(m_filename);
// if the list is empty, no filenames go on the command line, // if the list is empty, no filenames go on the command line,
// and we then extract everything in the archive. // and we then extract everything in the archive.
@ -221,12 +218,11 @@ void ZipArch::unarchFileInternal()
for ( it = m_fileList->begin(); it != m_fileList->end(); ++it ) for ( it = m_fileList->begin(); it != m_fileList->end(); ++it )
{ {
*kp << codec->fromUnicode(*it); *kp << (*it);
} }
} }
*kp << "-d"; *kp << "-d" << m_destDir;
*kp << codec->fromUnicode(m_destDir);
connect( kp, TQT_SIGNAL( receivedStdout(KProcess*, char*, int) ), connect( kp, TQT_SIGNAL( receivedStdout(KProcess*, char*, int) ),
TQT_SLOT( slotReceivedOutput(KProcess*, char*, int) ) ); TQT_SLOT( slotReceivedOutput(KProcess*, char*, int) ) );

Loading…
Cancel
Save