@@ -683,7 +683,7 @@ void CCharu3App::RegisterAdditionalHotkeys()
683
683
684
684
int nSize = m_pTree->m_MyStringList .size ();
685
685
HTREEITEM hTreeItem = m_pTree->GetRootItem ();
686
- for (int i = 0 ; i < nSize && hTreeItem; hTreeItem = m_pTree->getTrueNextItem (hTreeItem), i++) {
686
+ for (int i = 0 ; i < nSize && hTreeItem; hTreeItem = m_pTree->GetTrueNextItem (hTreeItem), i++) {
687
687
if (hTreeItem) {
688
688
data = m_pTree->getDataPtr (hTreeItem);
689
689
strKey = m_pTree->getDataOptionStr (data->m_strMacro , EXMACRO_HOT_KEY);
@@ -954,7 +954,7 @@ void CCharu3App::playHotItem(int nTarget)
954
954
LOG (_T (" Direct copy folder %s" ), dataChild.m_strTitle .GetString ());
955
955
}
956
956
957
- m_pTree->addData (keyData.m_hItem , dataChild, true , true );
957
+ m_pTree->AddData (keyData.m_hItem , dataChild, true );
958
958
}
959
959
RegisterAdditionalHotkeys ();// 追加ホットキーを設定
960
960
m_nPhase = PHASE_IDOL;
@@ -1703,7 +1703,7 @@ void CCharu3App::Record(CString text)
1703
1703
if (m_ini.m_strCopySound != _T (" " )) {
1704
1704
PlaySound (m_ini.m_strCopySound , NULL , SND_ASYNC | SND_FILENAME);
1705
1705
}
1706
- m_pTree->addData (NULL , data);
1706
+ m_pTree->AddData (NULL , data);
1707
1707
m_strPreviousStocked = text;
1708
1708
}
1709
1709
}
@@ -2153,7 +2153,7 @@ void CCharu3App::OnAddData()
2153
2153
CEditDialog editDialog (NULL , &data, true );
2154
2154
int nRet = editDialog.DoModal ();
2155
2155
if (IDOK == nRet) {
2156
- theApp.m_pTree ->addData (NULL , data);
2156
+ theApp.m_pTree ->AddData (NULL , data);
2157
2157
}
2158
2158
}
2159
2159
0 commit comments