Skip to content

Commit

Permalink
CTVTestApp のメンバ関数の余分なパラメータを削除
Browse files Browse the repository at this point in the history
  • Loading branch information
DBCTRADO committed Nov 5, 2014
1 parent 42176c8 commit 2490f5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TVTestPlugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -2828,7 +2828,7 @@ class CTVTestApp
pInfo->Size=sizeof(ThemeDrawBackgroundInfo);
return MsgThemeDrawBackground(m_pParam,pInfo);
}
bool ThemeDrawBackground(PluginParam *pParam,LPCWSTR pszStyle,HDC hdc,const RECT &DrawRect) {
bool ThemeDrawBackground(LPCWSTR pszStyle,HDC hdc,const RECT &DrawRect) {
return MsgThemeDrawBackground(m_pParam,pszStyle,hdc,DrawRect);
}
bool ThemeDrawText(ThemeDrawTextInfo *pInfo) {
Expand All @@ -2839,7 +2839,7 @@ class CTVTestApp
UINT DrawFlags,COLORREF Color=CLR_INVALID) {
return MsgThemeDrawText(m_pParam,pszStyle,hdc,pszText,DrawRect,DrawFlags,Color);
}
bool ThemeDrawIcon(PluginParam *pParam,ThemeDrawIconInfo *pInfo) {
bool ThemeDrawIcon(ThemeDrawIconInfo *pInfo) {
pInfo->Size=sizeof(ThemeDrawIconInfo);
return MsgThemeDrawIcon(m_pParam,pInfo);
}
Expand All @@ -2850,7 +2850,7 @@ class CTVTestApp
return MsgThemeDrawIcon(m_pParam,pszStyle,hdc,DstX,DstY,DstWidth,DstHeight,
hbm,SrcX,SrcY,SrcWidth,SrcHeight,Color,Opacity);
}
bool GetEpgCaptureStatus(PluginParam *pParam,EpgCaptureStatusInfo *pInfo) {
bool GetEpgCaptureStatus(EpgCaptureStatusInfo *pInfo) {
return MsgGetEpgCaptureStatus(m_pParam,pInfo);
}
bool GetAppCommandInfo(AppCommandInfo *pInfo) {
Expand Down

0 comments on commit 2490f5b

Please sign in to comment.