} MagnifierCustomLabelIdx;
class MagnifierCustomLabelIdxCompare { // Comparison class for MagnifierCustomLabelIdx
public:
- bool operator()(const MagnifierCustomLabelIdx x, const MagnifierCustomLabelIdx y) {
+ bool operator()(const MagnifierCustomLabelIdx& x, const MagnifierCustomLabelIdx& y) const {
if (x.touch_id != y.touch_id) {
return x.touch_id > y.touch_id;
} else {
}
if (SCL_EVENT_PASS_ON == handler->on_event_notification(SCL_UINOTITYPE_POPUP_CLOSING, &desc)) {
+#if 0 // NOT_USED
SclNotiPopupClosedDesc closed_desc;
closed_desc.ui_event_desc = NULL;
closed_desc.input_mode = desc.input_mode;
closed_desc.timed_out = desc.timed_out;
+#endif
handler->on_event_notification(SCL_UINOTITYPE_POPUP_CLOSED, &desc);
CSCLKeyFocusHandler *focus_handler = CSCLKeyFocusHandler::get_instance();
if (impl) {
impl->set_window_backend_callback(callback, data);
}
-}
\ No newline at end of file
+}