From 865dd6c0c57773845ab7c7e1d354836dee740f2c Mon Sep 17 00:00:00 2001 From: Mark Kendall Date: Wed, 26 Jan 2011 09:34:55 +0800 Subject: [PATCH] MythEvent: Add a new event type to signal playback startup progress. --- mythtv/libs/libmythdb/mythevent.cpp | 2 ++ mythtv/libs/libmythdb/mythevent.h | 1 + 2 files changed, 3 insertions(+) diff --git a/mythtv/libs/libmythdb/mythevent.cpp b/mythtv/libs/libmythdb/mythevent.cpp index ff2ac998cc2..b559e1ea505 100644 --- a/mythtv/libs/libmythdb/mythevent.cpp +++ b/mythtv/libs/libmythdb/mythevent.cpp @@ -4,6 +4,8 @@ QEvent::Type MythEvent::MythEventMessage = (QEvent::Type) QEvent::registerEventType(); QEvent::Type MythEvent::MythUserMessage = (QEvent::Type) QEvent::registerEventType(); +QEvent::Type MythEvent::kUpdateTvProgressEventType = + (QEvent::Type) QEvent::registerEventType(); QEvent::Type MythEvent::kExitToMainMenuEventType = (QEvent::Type) QEvent::registerEventType(); QEvent::Type MythEvent::kMythPostShowEventType = diff --git a/mythtv/libs/libmythdb/mythevent.h b/mythtv/libs/libmythdb/mythevent.h index 40f833dba47..c34bb0a1517 100644 --- a/mythtv/libs/libmythdb/mythevent.h +++ b/mythtv/libs/libmythdb/mythevent.h @@ -70,6 +70,7 @@ class MPUBLIC MythEvent : public QEvent static Type MythEventMessage; static Type MythUserMessage; + static Type kUpdateTvProgressEventType; static Type kExitToMainMenuEventType; static Type kMythPostShowEventType; static Type kEnableDrawingEventType;