mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-10-15 15:00:58 -04:00
Always convert explicitly from QByteArray to QString.
This commit is contained in:
parent
d0016bf6c4
commit
b0ad864fe0
2 changed files with 3 additions and 3 deletions
|
@ -41,12 +41,12 @@ Uuid Uuid::random() {
|
|||
|
||||
QString Uuid::toBase64() const
|
||||
{
|
||||
return m_data.toBase64();
|
||||
return QString::fromAscii(m_data.toBase64());
|
||||
}
|
||||
|
||||
QString Uuid::toHex() const
|
||||
{
|
||||
return m_data.toHex();
|
||||
return QString::fromAscii(m_data.toHex());
|
||||
}
|
||||
|
||||
QByteArray Uuid::toByteArray() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue