mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-08 14:32:39 -04:00
Coding style fixes.
This commit is contained in:
parent
0c7e1f1a6b
commit
b90807c4d3
7 changed files with 10 additions and 12 deletions
|
@ -29,16 +29,16 @@
|
|||
|
||||
namespace QTest {
|
||||
template<>
|
||||
char *toString(const Uuid &uuid)
|
||||
char* toString(const Uuid& uuid)
|
||||
{
|
||||
QByteArray ba = "Uuid(";
|
||||
ba += uuid.toBase64().toAscii().constData();
|
||||
ba += ")";
|
||||
return qstrdup(ba.data());
|
||||
return qstrdup(ba.constData());
|
||||
}
|
||||
|
||||
template<>
|
||||
char *toString(const Group::TriState &triState)
|
||||
char* toString(const Group::TriState& triState)
|
||||
{
|
||||
QString value;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue