Changeset - r10415:b7e442943bfe
[Not reviewed]
master
0 1 0
rubidium - 16 years ago 2008-12-12 19:54:54
rubidium@openttd.org
(svn r14668) -Change: use include <> instead of include "" when including ICU's headers.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/gfx.cpp
Show inline comments
 
@@ -239,14 +239,14 @@ void DrawBox(int x, int y, int dx1, int 
 
}
 

	
 

	
 
#if !defined(WITH_ICU)
 
static void HandleBiDiAndArabicShapes(char *text, const char *lastof) {}
 
#else
 
#include "unicode/ubidi.h"
 
#include "unicode/ushape.h"
 
#include <unicode/ubidi.h>
 
#include <unicode/ushape.h>
 

	
 
/**
 
 * Function to be able to handle right-to-left text and Arabic chars properly.
 
 *
 
 * First: right-to-left (RTL) is stored 'logically' in almost all applications
 
 *        and so do we. This means that their text is stored from right to the
0 comments (0 inline, 0 general)