Remove kodi prefix from includes

The kodi prefix is not needed for includes, as the kodi directory is set
as include directory directly.

Signed-off-by: Julian Scheel <julian@jusst.de>
This commit is contained in:
Julian Scheel 2016-11-04 11:00:39 +01:00
parent 65e2a68849
commit 8eb0d3b5e0
3 changed files with 6 additions and 6 deletions

View File

@ -21,10 +21,10 @@
*/
#include "client.h"
#include <kodi/xbmc_pvr_dll.h>
#include <kodi/libXBMC_addon.h>
#include <xbmc_pvr_dll.h>
#include <libXBMC_addon.h>
#include <p8-platform/util/util.h>
#include <kodi/libKODI_guilib.h>
#include <libKODI_guilib.h>
#include "OctonetData.h"
#include "rtsp_client.hpp"

View File

@ -21,8 +21,8 @@
*
*/
#include "kodi/libXBMC_addon.h"
#include "kodi/libXBMC_pvr.h"
#include "libXBMC_addon.h"
#include "libXBMC_pvr.h"
#ifndef __func__
#define __func__ __FUNCTION__

View File

@ -5,7 +5,7 @@
#include "Socket.h"
#include "client.h"
#include <p8-platform/util/util.h>
#include <kodi/libXBMC_addon.h>
#include <libXBMC_addon.h>
#include <cstring>
#include <sstream>