We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8efdf5 commit e642bcaCopy full SHA for e642bca
sakura_core/dlg/CDialog.cpp
@@ -757,15 +757,16 @@ static void DeleteRecentItem(
757
return;
758
}
759
760
- // コンボボックスのリストアイテム削除
761
- Combo_DeleteString( hwndCombo, nIndex );
762
-
763
- // 履歴項目を削除
764
int nRecentIndex = pRecent->FindItemByText( cItemText.GetStringPtr() );
765
// お気に入りチェック
766
if( pRecent->IsFavorite(nRecentIndex) ){
767
768
+
+ // コンボボックスのリストアイテム削除
+ Combo_DeleteString( hwndCombo, nIndex );
769
+ // 履歴項目を削除
770
if( 0 <= nRecentIndex ){
771
pRecent->DeleteItem(nRecentIndex);
772
0 commit comments