Skip to content

Commit

Permalink
fixed compilation of CJSONRPCUtils::NotifyItemUpdated()
Browse files Browse the repository at this point in the history
  • Loading branch information
opdenkamp committed Oct 14, 2012
1 parent 6bd25d4 commit a2040c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xbmc/interfaces/json-rpc/JSONRPCUtils.h
Expand Up @@ -164,7 +164,8 @@ namespace JSONRPC
public: public:
static inline void NotifyItemUpdated() static inline void NotifyItemUpdated()
{ {
g_windowManager.SendThreadMessage(CGUIMessage(GUI_MSG_NOTIFY_ALL, 0, 0, GUI_MSG_UPDATE, g_windowManager.GetActiveWindow())); CGUIMessage message(GUI_MSG_NOTIFY_ALL, 0, 0, GUI_MSG_UPDATE, g_windowManager.GetActiveWindow());
g_windowManager.SendThreadMessage(message);
} }
}; };
} }

0 comments on commit a2040c7

Please sign in to comment.