| 674 void uic_text_copy(UiText *from, UiText *to) { |
674 void uic_text_copy(UiText *from, UiText *to) { |
| 675 to->get = from->get; |
675 to->get = from->get; |
| 676 to->set = from->set; |
676 to->set = from->set; |
| 677 to->getsubstr = from->getsubstr; |
677 to->getsubstr = from->getsubstr; |
| 678 to->insert = from->insert; |
678 to->insert = from->insert; |
| |
679 to->replace = from->replace; |
| 679 to->setposition = from->setposition; |
680 to->setposition = from->setposition; |
| 680 to->position = from->position; |
681 to->position = from->position; |
| 681 to->showposition = from->showposition; |
682 to->showposition = from->showposition; |
| 682 to->setselection = from->setselection; |
683 to->setselection = from->setselection; |
| 683 to->selection = from->selection; |
684 to->selection = from->selection; |