mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-19 04:52:12 +01:00
OP-1362 make_ts_errors : Revert filesearch.cpp changes (compile error). Added Q_OBJECT for xmlconfig.cpp error
This commit is contained in:
parent
5f3699fbaa
commit
2e5a28c5c3
@ -43,19 +43,19 @@ using namespace Utils;
|
||||
|
||||
static inline QString msgCanceled(const QString &searchTerm, int numMatches, int numFilesSearched)
|
||||
{
|
||||
return QCoreApplication::translate(tr("Utils::FileSearch"), tr("%1: canceled. %n occurrences found in %2 files."),
|
||||
return QCoreApplication::translate("Utils::FileSearch", "%1: canceled. %n occurrences found in %2 files.",
|
||||
0, numMatches).arg(searchTerm).arg(numFilesSearched);
|
||||
}
|
||||
|
||||
static inline QString msgFound(const QString &searchTerm, int numMatches, int numFilesSearched)
|
||||
{
|
||||
return QCoreApplication::translate(tr("Utils::FileSearch"), tr("%1: %n occurrences found in %2 files."),
|
||||
return QCoreApplication::translate("Utils::FileSearch", "%1: %n occurrences found in %2 files.",
|
||||
0, numMatches).arg(searchTerm).arg(numFilesSearched);
|
||||
}
|
||||
|
||||
static inline QString msgFound(const QString &searchTerm, int numMatches, int numFilesSearched, int filesSize)
|
||||
{
|
||||
return QCoreApplication::translate(tr("Utils::FileSearch"), tr("%1: %n occurrences found in %2 of %3 files."),
|
||||
return QCoreApplication::translate("Utils::FileSearch", "%1: %n occurrences found in %2 of %3 files.",
|
||||
0, numMatches).arg(searchTerm).arg(numFilesSearched).arg(filesSize);
|
||||
}
|
||||
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include <QObject>
|
||||
|
||||
class XMLCONFIG_EXPORT XmlConfig : QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
static const QSettings::Format XmlSettingsFormat;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user