1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2024-11-25 00:53:43 +00:00

Fix typo in enum name.

This commit is contained in:
King_DuckZ 2016-07-12 19:31:52 +01:00
parent 5e69367c2c
commit 4b0aa85ac2
3 changed files with 3 additions and 3 deletions

View file

@ -149,7 +149,7 @@ namespace dindb {
return dindb::find_set_details<
dindb::SetDetail_ID,
dindb::SetDetail_Desc,
dindb::SetDetail_CreeationDate,
dindb::SetDetail_CreationDate,
dindb::SetDetail_DiskLabel
>(*m_conn, parSets);
}

View file

@ -42,7 +42,7 @@ namespace dindb {
const SetDetailsMap g_set_details_map {
{SetDetail_Desc, "desc"},
{SetDetail_Type, "type"},
{SetDetail_CreeationDate, "creation"},
{SetDetail_CreationDate, "creation"},
{SetDetail_AppName, "app_name"},
{SetDetail_ID, "id"},
{SetDetail_DiskLabel, "disk_label"},

View file

@ -42,7 +42,7 @@ namespace dindb {
enum SetDetails {
SetDetail_Desc = 0x01,
SetDetail_Type = 0x02,
SetDetail_CreeationDate = 0x04,
SetDetail_CreationDate = 0x04,
SetDetail_AppName = 0x08,
SetDetail_ID = 0x10,
SetDetail_DiskLabel = 0x20,