Browse Source

Use smaller type

adaptive-webui-19844
Chocobo1 7 years ago
parent
commit
fcbcf4039b
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 2
      src/base/rss/rss_item.cpp
  2. 2
      src/base/rss/rss_item.h

2
src/base/rss/rss_item.cpp

@ -36,7 +36,7 @@ @@ -36,7 +36,7 @@
using namespace RSS;
const QString Item::PathSeparator("\\");
const QChar Item::PathSeparator('\\');
Item::Item(const QString &path)
: m_path(path)

2
src/base/rss/rss_item.h

@ -58,7 +58,7 @@ namespace RSS @@ -58,7 +58,7 @@ namespace RSS
virtual QJsonValue toJsonValue(bool withData = false) const = 0;
static const QString PathSeparator;
static const QChar PathSeparator;
static bool isValidPath(const QString &path);
static QString joinPath(const QString &path1, const QString &path2);

Loading…
Cancel
Save