event/DeferredMonitor: rename Run() to RunDeferred()

This commit is contained in:
Max Kellermann
2013-08-07 19:39:26 +02:00
parent 977004c350
commit f6f4742410
3 changed files with 6 additions and 6 deletions

View File

@@ -48,10 +48,10 @@ public:
void Cancel();
protected:
virtual void Run() = 0;
virtual void RunDeferred() = 0;
private:
void DoRun();
void Run();
static gboolean Callback(gpointer data);
};