mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2025-07-04 14:24:10 +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<
|
return dindb::find_set_details<
|
||||||
dindb::SetDetail_ID,
|
dindb::SetDetail_ID,
|
||||||
dindb::SetDetail_Desc,
|
dindb::SetDetail_Desc,
|
||||||
dindb::SetDetail_CreeationDate,
|
dindb::SetDetail_CreationDate,
|
||||||
dindb::SetDetail_DiskLabel
|
dindb::SetDetail_DiskLabel
|
||||||
>(*m_conn, parSets);
|
>(*m_conn, parSets);
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ namespace dindb {
|
||||||
const SetDetailsMap g_set_details_map {
|
const SetDetailsMap g_set_details_map {
|
||||||
{SetDetail_Desc, "desc"},
|
{SetDetail_Desc, "desc"},
|
||||||
{SetDetail_Type, "type"},
|
{SetDetail_Type, "type"},
|
||||||
{SetDetail_CreeationDate, "creation"},
|
{SetDetail_CreationDate, "creation"},
|
||||||
{SetDetail_AppName, "app_name"},
|
{SetDetail_AppName, "app_name"},
|
||||||
{SetDetail_ID, "id"},
|
{SetDetail_ID, "id"},
|
||||||
{SetDetail_DiskLabel, "disk_label"},
|
{SetDetail_DiskLabel, "disk_label"},
|
||||||
|
|
|
@ -42,7 +42,7 @@ namespace dindb {
|
||||||
enum SetDetails {
|
enum SetDetails {
|
||||||
SetDetail_Desc = 0x01,
|
SetDetail_Desc = 0x01,
|
||||||
SetDetail_Type = 0x02,
|
SetDetail_Type = 0x02,
|
||||||
SetDetail_CreeationDate = 0x04,
|
SetDetail_CreationDate = 0x04,
|
||||||
SetDetail_AppName = 0x08,
|
SetDetail_AppName = 0x08,
|
||||||
SetDetail_ID = 0x10,
|
SetDetail_ID = 0x10,
|
||||||
SetDetail_DiskLabel = 0x20,
|
SetDetail_DiskLabel = 0x20,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue