TextEditor: Fix translatable string

CountingLabel doesn't have tr. Use BaseFileFind's instead.

Change-Id: I184319e72a2d1d9bb579bae4e7a013aebeb2755f
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Orgad Shaneh
2016-08-22 22:51:36 +03:00
committed by Orgad Shaneh
parent f7e7fc4e29
commit b48e588d84

View File

@@ -477,7 +477,7 @@ CountingLabel::CountingLabel()
void CountingLabel::updateCount(int count) void CountingLabel::updateCount(int count)
{ {
setText(tr("%1 found").arg(count)); setText(BaseFileFind::tr("%1 found").arg(count));
} }
} // namespace Internal } // namespace Internal