aboutsummaryrefslogtreecommitdiff
path: root/assets/lyx_img
ModeNameSize
-rw-r--r--Bildschirmfoto_2018-08-30_14-26-35.png392215logplain
-rw-r--r--Bildschirmfoto_2018-08-30_14-27-25.png58974logplain
-rw-r--r--Bildschirmfoto_2018-08-30_14-28-32.png180489logplain
-rw-r--r--Bildschirmfoto_2018-08-30_14-32-48.png467151logplain
-rw-r--r--Bildschirmfoto_2018-08-30_14-51-25.png298898logplain
-rw-r--r--assign_signal.png117671logplain
-rw-r--r--route_ex1.png9681logplain
-rw-r--r--route_ex2.png9374logplain
-rw-r--r--route_ex3.png11544logplain
-rw-r--r--screenshot_20180830_142551.png257012logplain
an> protected std::list<KeyPress> { typedef std::list<KeyPress> super; typedef super::iterator iterator; typedef super::const_iterator const_iterator; virtual const_iterator find(const KeyPress &key) const { const_iterator f(begin()); const_iterator e(end()); while (f != e) { if (*f == key) return f; ++f; } return e; } virtual iterator find(const KeyPress &key) { iterator f(begin()); iterator e(end()); while (f != e) {