mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 17:44:30 +00:00
Remove println
statements from NSTextInputClient protocol functions
This commit is contained in:
parent
a4ceae3cf2
commit
f170582c26
1 changed files with 0 additions and 2 deletions
|
@ -1070,7 +1070,6 @@ extern "C" fn set_marked_text(
|
||||||
selected_range: NSRange,
|
selected_range: NSRange,
|
||||||
replacement_range: NSRange,
|
replacement_range: NSRange,
|
||||||
) {
|
) {
|
||||||
println!("set_marked_text");
|
|
||||||
unsafe {
|
unsafe {
|
||||||
get_window_state(this)
|
get_window_state(this)
|
||||||
.borrow_mut()
|
.borrow_mut()
|
||||||
|
@ -1106,7 +1105,6 @@ extern "C" fn attributed_substring_for_proposed_range(
|
||||||
range: NSRange,
|
range: NSRange,
|
||||||
_actual_range: *mut c_void,
|
_actual_range: *mut c_void,
|
||||||
) -> id {
|
) -> id {
|
||||||
println!("attributed_substring_for_proposed_range({:?})", range);
|
|
||||||
with_input_handler(this, |input_handler| {
|
with_input_handler(this, |input_handler| {
|
||||||
let range = range.to_range()?;
|
let range = range.to_range()?;
|
||||||
if range.is_empty() {
|
if range.is_empty() {
|
||||||
|
|
Loading…
Reference in a new issue