cc_frm_clock.cpp: move cl_timer to protected

Was not usable from derived classes.
This commit is contained in:
2019-10-27 16:24:47 +01:00
parent 40633dcfb5
commit 535b1004aa

View File

@@ -45,13 +45,14 @@ class CComponentsTimer;
class CComponentsFrmClock : public CComponentsForm, public CCTextScreen
{
private:
CComponentsTimer *cl_timer;
void ShowTime();
#if 0
bool may_blit;
#endif
protected:
CComponentsTimer *cl_timer;
///slot for timer event, reserved for ShowTime()
sigc::slot0<void> cl_sl_show;