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 class CComponentsFrmClock : public CComponentsForm, public CCTextScreen
{ {
private: private:
CComponentsTimer *cl_timer;
void ShowTime(); void ShowTime();
#if 0 #if 0
bool may_blit; bool may_blit;
#endif #endif
protected: protected:
CComponentsTimer *cl_timer;
///slot for timer event, reserved for ShowTime() ///slot for timer event, reserved for ShowTime()
sigc::slot0<void> cl_sl_show; sigc::slot0<void> cl_sl_show;