Ignore:
Timestamp:
Nov 16, 2005, 8:36:46 PM (20 years ago)
Author:
dmik
Message:

Transferred Qt for OS/2 version 3.3.1-rc5 sources from the CVS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel/qlocalfs.cpp

    r7 r8  
    155155                           fi->size(), fi->lastModified(), fi->lastRead(), fi->isDir(), fi->isFile(),
    156156                           fi->isSymLink(), fi->isWritable(), fi->isReadable(), fi->isExecutable() );
     157        // ### Block signals to initiate a hack in QNetworkOperation that will
     158        // prevent the op from being deleted during the qApp->processEvents() call
     159        op->blockSignals( TRUE );
     160        qApp->processEvents();
     161        op->blockSignals( FALSE );
     162        if ( op->state() == StStopped ) {
     163            op->free();
     164            return;
     165        }
    157166    }
    158167    emit newChildren( infos, op );
Note: See TracChangeset for help on using the changeset viewer.