File tree 2 files changed +5
-11
lines changed
2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -143,26 +143,21 @@ bool Context::Highlight(size_t index) {
143
143
return true ;
144
144
}
145
145
146
- bool Context::DeleteCandidate (an<Candidate> cand) {
147
- if (!cand)
148
- return false ;
149
- DLOG (INFO) << " Deleting candidate: " << cand->text ();
150
- delete_notifier_ (this );
151
- return true ; // CAVEAT: this doesn't mean anything is deleted for sure
152
- }
153
-
154
146
bool Context::DeleteCandidate (size_t index) {
155
147
if (composition_.empty ())
156
148
return false ;
157
149
Segment& seg (composition_.back ());
158
- return DeleteCandidate (seg.GetCandidateAt (index ));
150
+ seg.selected_index = index ;
151
+ DLOG (INFO) << " Deleting candidate: " << seg.GetSelectedCandidate ()->text ();
152
+ delete_notifier_ (this );
153
+ return true ; // CAVEAT: this doesn't mean anything is deleted for sure
159
154
}
160
155
161
156
bool Context::DeleteCurrentSelection () {
162
157
if (composition_.empty ())
163
158
return false ;
164
159
Segment& seg (composition_.back ());
165
- return DeleteCandidate (seg.GetSelectedCandidate () );
160
+ return DeleteCandidate (seg.selected_index );
166
161
}
167
162
168
163
bool Context::ConfirmCurrentSelection () {
Original file line number Diff line number Diff line change @@ -94,7 +94,6 @@ class RIME_API Context {
94
94
95
95
private:
96
96
string GetSoftCursor () const ;
97
- bool DeleteCandidate (an<Candidate> cand);
98
97
99
98
string input_;
100
99
size_t caret_pos_ = 0 ;
You can’t perform that action at this time.
0 commit comments