mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Add helper method for creating a UUID
Fix QString formatter
This commit is contained in:
parent
795deac727
commit
42749538a7
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <fmt/format.h>
|
#include <fmt/format.h>
|
||||||
|
#include <QUuid>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
|
|
||||||
|
@ -10,6 +11,12 @@ auto fS(Args &&... args) -> decltype(fmt::format(std::forward<Args>(args)...))
|
||||||
return fmt::format(std::forward<Args>(args)...);
|
return fmt::format(std::forward<Args>(args)...);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static QString CreateUUID()
|
||||||
|
{
|
||||||
|
auto uuid = QUuid::createUuid();
|
||||||
|
return uuid.toString();
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
||||||
namespace fmt {
|
namespace fmt {
|
||||||
|
@ -17,7 +24,7 @@ namespace fmt {
|
||||||
// format_arg for QString
|
// format_arg for QString
|
||||||
inline void format_arg(BasicFormatter<char> &f, const char *&, const QString &v)
|
inline void format_arg(BasicFormatter<char> &f, const char *&, const QString &v)
|
||||||
{
|
{
|
||||||
f.writer().write("\"{}\"", v.toStdString());
|
f.writer().write("{}", v.toStdString());
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace fmt
|
} // namespace fmt
|
||||||
|
|
Loading…
Reference in a new issue