cc_frm_clock.cpp: move cl_timer to protected

Was not usable from derived classes.


Origin commit data
------------------
Commit: e6833af004
Author: Thilo Graf <dbt@novatux.de>
Date: 2019-10-27 (Sun, 27 Oct 2019)
This commit is contained in:
2019-10-27 22:56:48 +01:00
committed by vanhofen
parent 6146ddb67b
commit 39c579072a

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;