diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-21 13:30:14 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-21 13:30:14 +0100 |
| commit | cbaed1119cdf3acb8662e5240f59706722437d94 (patch) | |
| tree | 4167a77a1f529faabb5718b4d26e269f47a09865 /src/lib/examine_content_job.cc | |
| parent | 4488ca79635bda37e034b888d1c43618f5e4285e (diff) | |
Tidy up progress reporting for examine content.
Diffstat (limited to 'src/lib/examine_content_job.cc')
| -rw-r--r-- | src/lib/examine_content_job.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/examine_content_job.cc b/src/lib/examine_content_job.cc index 44a9f4ce9..40665e1e8 100644 --- a/src/lib/examine_content_job.cc +++ b/src/lib/examine_content_job.cc @@ -45,6 +45,10 @@ ExamineContentJob::~ExamineContentJob () string ExamineContentJob::name () const { + if (_fs->name().empty ()) { + return "Examine content"; + } + return String::compose ("Examine content of %1", _fs->name()); } |
