~ubuntu-branches/ubuntu/oneiric/kdesdk/oneiric-updates

« back to all changes in this revision

Viewing changes to kate/plugins/katebuild-plugin/plugin_katebuild.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2011-04-04 15:24:21 UTC
  • mto: (0.3.6 experimental)
  • mto: This revision was merged to the branch mainline in revision 119.
  • Revision ID: james.westby@ubuntu.com-20110404152421-uqu2md80qyfzxhzw
Tags: upstream-4.6.2
ImportĀ upstreamĀ versionĀ 4.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
457
457
            msgs << i18np("Found one warning.", "Found %1 warnings.", m_numWarnings);
458
458
        }
459
459
        KPassivePopup::message(i18n("Make Results"), msgs.join("\n"), m_toolView);
460
 
    } else {
 
460
    }
 
461
    else if (exitCode != 0) {
 
462
        KPassivePopup::message(i18n("Make Results"), i18np("Found one error.", "Found %1 errors.", 1), m_toolView);
 
463
    }
 
464
    else {
461
465
        KPassivePopup::message(i18n("Make Results"), i18n("Build completed without problems."), m_toolView);
462
466
    }
463
 
 
 
467
    
464
468
}
465
469
 
466
470