~ubuntu-branches/ubuntu/precise/mp3diags/precise

« back to all changes in this revision

Viewing changes to src/Transformation.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-09-05 10:48:57 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090905104857-48aob98yoibqarh0
Tags: 0.99.05.033-0ubuntu1
New upstream release (FFe granted LP: #423812).

Show diffs side-by-side

added added

removed removed

Lines of Context:
457
457
    removeSuffix(strOrigSrcName);
458
458
    if (!m_optionsWrp.m_opt.m_bTempCreate)
459
459
    {
460
 
        strName = getTempFile();
 
460
        strName = getTempFile(strOrigSrcName);
461
461
        return TRANSF_DONT_CREATE;
462
462
    }
463
463
 
483
483
 
484
484
    if (!m_optionsWrp.m_opt.m_bCompCreate)
485
485
    {
486
 
        strBefore = getTempFile();
487
 
        strAfter = getTempFile();
 
486
        strBefore = getTempFile(strOrigSrcName);
 
487
        strAfter = getTempFile(strOrigSrcName);
488
488
        return TRANSF_DONT_CREATE;
489
489
    }
490
490