|
From: Tapio V. <aa...@us...> - 2011-01-10 21:51:11
|
Module: editor
Branch: master
Commit: 72c0f0b630fb78cefd02d99d5dd820dad6196383
Author: Tapio Vierros <tap...@gm...>
Date: Mon Jan 10 23:50:33 2011 +0200
Minor refinement to progressbar.
---
pitchvis.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/pitchvis.cc b/pitchvis.cc
index 73dcef0..77fe9c1 100644
--- a/pitchvis.cc
+++ b/pitchvis.cc
@@ -29,7 +29,7 @@ PitchVis::PitchVis(std::string const& filename): height(512) {
img.resize(width * height);
Analyzer analyzer(44100, "");
MusicalScale scale;
- QProgressDialog progress("Analyzing and rendering pitch...", "Abort", 0, width, this);
+ QProgressDialog progress(tr("Analyzing and rendering pitch data..."), tr("&Abort"), 0, width, this);
progress.setWindowModality(Qt::WindowModal);
for (unsigned x = 0; x < width; ++x) {
|