~ubuntu-branches/ubuntu/trusty/krusader/trusty

« back to all changes in this revision

Viewing changes to krusader/Splitter/splitter.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-08-08 13:47:36 UTC
  • mfrom: (1.2.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20110808134736-8e630ivgd2c3sgg5
Tags: 1:2.4.0~beta1-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
{
163
163
    int bufferLen = transferArray.size();
164
164
 
165
 
    if (noValidWriteJob) {     /* splitted file should be closed ? */
 
165
    if (noValidWriteJob) {     /* splited file should be closed ? */
166
166
        byteArray = QByteArray();  /* giving empty buffer which indicates closing */
167
167
    } else if (outputFileSize + bufferLen > splitSize) { /* maximum length reached? */
168
168
        int shortLen = splitSize - outputFileSize;