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:
parent
5e69367c2c
commit
4b0aa85ac2
3 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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"},
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue