QResource: de-inline registerSelf for files

No other changes, aside from the coding style update to make sure the
coding style bot won't complain.

Change-Id: Iae320a2868db402a993dfffd15689a8a6ac202e8
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
This commit is contained in:
Thiago Macieira 2018-11-19 10:39:51 -08:00
parent 57b4b45cbd
commit f56ca2c4f6

View File

@ -1050,12 +1050,8 @@ public:
QString mappingFile() const { return fileName; }
ResourceRootType type() const override { return Resource_File; }
bool registerSelf(const QString &f) {
bool fromMM = false;
uchar *data = 0;
unsigned int data_len = 0;
#ifdef QT_USE_MMAP
bool registerSelf(const QString &f);
};
#ifndef MAP_FILE
# define MAP_FILE 0
@ -1064,6 +1060,13 @@ public:
# define MAP_FAILED -1
#endif
bool QDynamicFileResourceRoot::registerSelf(const QString &f)
{
bool fromMM = false;
uchar *data = 0;
unsigned int data_len = 0;
#ifdef QT_USE_MMAP
int fd = QT_OPEN(QFile::encodeName(f), O_RDONLY,
#if defined(Q_OS_WIN)
_S_IREAD | _S_IWRITE
@ -1117,7 +1120,6 @@ public:
}
return false;
}
};
static QString qt_resource_fixResourceRoot(QString r) {
if(!r.isEmpty()) {