diff options
author | jmarshallnz <jmarshallnz@svn> | 2009-09-23 10:03:22 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2009-09-23 10:03:22 +0000 |
commit | c3018c6090df3c4cf3c5a96cc2310f931ef8f37f (patch) | |
tree | e22747627d63a591f15d9f87e15aa08cde10a563 /guilib/GUIControl.h | |
parent | 59629d6966e46a99fc8e41a05f5e460d984997a4 (diff) |
changed: DWORD -> unsigned int for frame-based timings, and moved to using CTimeUtils::Update/GetFrameTime() for UI timing.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23109 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUIControl.h')
-rw-r--r-- | guilib/GUIControl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guilib/GUIControl.h b/guilib/GUIControl.h index 4de51176c3..9a3f216777 100644 --- a/guilib/GUIControl.h +++ b/guilib/GUIControl.h @@ -97,7 +97,7 @@ public: virtual ~CGUIControl(void); virtual CGUIControl *Clone() const=0; - virtual void DoRender(DWORD currentTime); + virtual void DoRender(unsigned int currentTime); virtual void Render(); bool HasRendered() const { return m_hasRendered; }; @@ -258,7 +258,7 @@ public: #endif protected: virtual void UpdateColors(); - virtual void Animate(DWORD currentTime); + virtual void Animate(unsigned int currentTime); virtual bool CheckAnimation(ANIMATION_TYPE animType); void UpdateStates(ANIMATION_TYPE type, ANIMATION_PROCESS currentProcess, ANIMATION_STATE currentState); bool SendWindowMessage(CGUIMessage &message); |