mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-07 23:54:09 +02:00
Code convention fixes
This commit is contained in:
parent
9a484ff00d
commit
82b26b75f4
1 changed files with 4 additions and 4 deletions
|
@ -22,9 +22,9 @@
|
|||
// copy of QNetworkCacheMetaData
|
||||
class MyMetaData {
|
||||
public:
|
||||
typedef QPair<QByteArray, QByteArray> RawHeader;
|
||||
typedef QList<RawHeader> RawHeaderList;
|
||||
typedef QHash<qint32, QVariant> AttributesMap;
|
||||
using RawHeader = QPair<QByteArray, QByteArray>;
|
||||
using RawHeaderList = QList<RawHeader>;
|
||||
using AttributesMap = QHash<qint32, QVariant>;
|
||||
|
||||
QUrl url;
|
||||
QDateTime expirationDate;
|
||||
|
@ -34,7 +34,7 @@ public:
|
|||
RawHeaderList rawHeaders;
|
||||
};
|
||||
|
||||
QDataStream &operator>>(QDataStream &, MyMetaData &);
|
||||
QDataStream &operator>>(QDataStream& in, MyMetaData& metaData);
|
||||
|
||||
class CacheExtractApp : public QCoreApplication {
|
||||
Q_OBJECT
|
||||
|
|
Loading…
Reference in a new issue