~ubuntu-branches/ubuntu/quantal/kdevplatform/quantal-proposed

« back to all changes in this revision

Viewing changes to plugins/patchreview/libdiff2/kompareprocess.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Bhargav Mangipudi
  • Date: 2010-12-16 19:31:23 UTC
  • mfrom: (0.3.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20101216193123-xe2keh5754zwsn1t
Tags: 1.1.80-0ubuntu1
* New upstream release
  - kdevplatform2-libs is now kdevplatform3-libs due to ABI changes
  - Update kdevplatform3-libs.install to include l10n files
  - Update kdevplatform-dev.install
* Removed localization packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
246
246
#ifndef NDEBUG
247
247
        QString cmdLine;
248
248
        QStringList program = KProcess::program();
249
 
        QStringList::ConstIterator it = program.begin();
250
 
        for (; it != program.end(); ++it )
 
249
        QStringList::ConstIterator it = program.constBegin();
 
250
        for (; it != program.constEnd(); ++it )
251
251
            cmdLine += "\"" + (*it) + "\" ";
252
252
        kDebug(8101) << cmdLine << endl;
253
253
#endif