Kaydet (Commit) dfe56dfe authored tarafından Matúš Kukan's avatar Matúš Kukan

remove empty methods

They are empty since 3a20556d.

Change-Id: Ibd6c1722d3088d92677338b5b8011cddd6dd98cf
üst 7504b3dd
...@@ -66,10 +66,6 @@ class ScRefreshTimer : public AutoTimer ...@@ -66,10 +66,6 @@ class ScRefreshTimer : public AutoTimer
private: private:
ScRefreshTimerControl * const * ppControl; ScRefreshTimerControl * const * ppControl;
void AppendToControl() {}
void RemoveFromControl() {}
void Start() void Start()
{ {
if ( GetTimeout() ) if ( GetTimeout() )
...@@ -104,12 +100,7 @@ public: ...@@ -104,12 +100,7 @@ public:
void StartRefreshTimer() { Start(); } void StartRefreshTimer() { Start(); }
void SetRefreshControl( ScRefreshTimerControl * const * pp ) void SetRefreshControl( ScRefreshTimerControl * const * pp ) { ppControl = pp; }
{
RemoveFromControl();
ppControl = pp;
AppendToControl();
}
void SetRefreshHandler( const Link& rLink ) { SetTimeoutHdl( rLink ); } void SetRefreshHandler( const Link& rLink ) { SetTimeoutHdl( rLink ); }
......
...@@ -37,7 +37,6 @@ ScRefreshTimer::~ScRefreshTimer() ...@@ -37,7 +37,6 @@ ScRefreshTimer::~ScRefreshTimer()
{ {
if ( IsActive() ) if ( IsActive() )
Stop(); Stop();
RemoveFromControl();
} }
......
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