forked from qt-creator/qt-creator
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:
committed by
Orgad Shaneh
parent
f7e7fc4e29
commit
b48e588d84
@@ -477,7 +477,7 @@ CountingLabel::CountingLabel()
|
||||
|
||||
void CountingLabel::updateCount(int count)
|
||||
{
|
||||
setText(tr("%1 found").arg(count));
|
||||
setText(BaseFileFind::tr("%1 found").arg(count));
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user