Commit 3740c16b authored by Davis King's avatar Davis King

Removed cruft

parent f49bbc94
...@@ -690,7 +690,7 @@ namespace dlib ...@@ -690,7 +690,7 @@ namespace dlib
long x, y; long x, y;
tooltip_window win; tooltip_window win;
timer<tooltip>::kernel_2a tt_timer; timer<tooltip> tt_timer;
}; };
friend struct data; friend struct data;
...@@ -1410,10 +1410,10 @@ namespace dlib ...@@ -1410,10 +1410,10 @@ namespace dlib
long max_pos; long max_pos;
long js; long js;
timer<scroll_bar>::kernel_2a b1_timer; timer<scroll_bar> b1_timer;
timer<scroll_bar>::kernel_2a b2_timer; timer<scroll_bar> b2_timer;
timer<scroll_bar>::kernel_2a top_filler_timer; timer<scroll_bar> top_filler_timer;
timer<scroll_bar>::kernel_2a bottom_filler_timer; timer<scroll_bar> bottom_filler_timer;
long delayed_pos; long delayed_pos;
scoped_ptr<scroll_bar_style> style; scoped_ptr<scroll_bar_style> style;
......
...@@ -653,7 +653,7 @@ namespace dlib ...@@ -653,7 +653,7 @@ namespace dlib
scoped_ptr<text_field_style> style; scoped_ptr<text_field_style> style;
timer<text_field>::kernel_2a t; timer<text_field> t;
popup_menu_region right_click_menu; popup_menu_region right_click_menu;
...@@ -1049,7 +1049,7 @@ namespace dlib ...@@ -1049,7 +1049,7 @@ namespace dlib
scoped_ptr<text_box_style> style; scoped_ptr<text_box_style> style;
timer<text_box>::kernel_2a t; timer<text_box> t;
popup_menu_region right_click_menu; popup_menu_region right_click_menu;
...@@ -3188,7 +3188,7 @@ namespace dlib ...@@ -3188,7 +3188,7 @@ namespace dlib
long cursor_pos; long cursor_pos;
bool show_cursor; bool show_cursor;
bool recent_cursor_move; bool recent_cursor_move;
timer<text_grid>::kernel_2a cursor_timer; timer<text_grid> cursor_timer;
rgb_pixel border_color_; rgb_pixel border_color_;
any_function<void(unsigned long, unsigned long)> text_modified_handler; any_function<void(unsigned long, unsigned long)> text_modified_handler;
}; };
......
...@@ -124,7 +124,7 @@ private: ...@@ -124,7 +124,7 @@ private:
{ {
draggable::on_window_resized(); draggable::on_window_resized();
} }
timer<color_box>::kernel_1a t; timer<color_box> t;
}; };
......
...@@ -59,7 +59,7 @@ namespace ...@@ -59,7 +59,7 @@ namespace
) )
/*! /*!
requires requires
- timer_t is an implementation of timer/timer_kernel_abstract.h is instantiated - timer_t is an implementation of dlib/timer/timer_abstract.h is instantiated
timer_test_helper timer_test_helper
ensures ensures
- runs tests on timer_t for compliance with the specs - runs tests on timer_t for compliance with the specs
...@@ -94,7 +94,7 @@ namespace ...@@ -94,7 +94,7 @@ namespace
) )
/*! /*!
requires requires
- timer_t is an implementation of timer/timer_kernel_abstract.h is instantiated - timer_t is an implementation of dlib/timer/timer_abstract.h is instantiated
timer_test_helper timer_test_helper
ensures ensures
- runs tests on timer_t for compliance with the specs - runs tests on timer_t for compliance with the specs
...@@ -315,15 +315,15 @@ namespace ...@@ -315,15 +315,15 @@ namespace
void perform_test ( void perform_test (
) )
{ {
dlog << LINFO << "testing kernel_1a with test_timer"; dlog << LINFO << "testing timer_heavy with test_timer";
timer_test<timer<timer_test_helper>::kernel_1a> (); timer_test<timer_heavy<timer_test_helper> > ();
dlog << LINFO << "testing kernel_1a with test_timer2"; dlog << LINFO << "testing timer_heavy with test_timer2";
timer_test2<timer<timer_test_helper>::kernel_1a> (); timer_test2<timer_heavy<timer_test_helper> > ();
dlog << LINFO << "testing kernel_2a with test_timer"; dlog << LINFO << "testing timer with test_timer";
timer_test<timer<timer_test_helper>::kernel_2a> (); timer_test<timer<timer_test_helper> > ();
dlog << LINFO << "testing kernel_2a with test_timer2"; dlog << LINFO << "testing timer with test_timer2";
timer_test2<timer<timer_test_helper>::kernel_2a> (); timer_test2<timer<timer_test_helper> > ();
} }
} a; } a;
......
...@@ -181,7 +181,7 @@ namespace dlib ...@@ -181,7 +181,7 @@ namespace dlib
t.stop(); t.stop();
} }
dlib::timer<timeout>::kernel_2a t; dlib::timer<timeout> t;
bind* b; bind* b;
// restricted functions // restricted functions
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment