diff options
author | Slávek Banko <[email protected]> | 2012-07-07 18:00:33 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-07-07 18:00:33 +0200 |
commit | c94b518befc88a845c8ea1e91d1d49ca685af34e (patch) | |
tree | fe68347a9b9c7661a1e4876a71d882c816cfa683 | |
parent | 6fc27f0820dae3b04684ba7115b3b1327a2fbd1f (diff) | |
download | tde-style-qtcurve-c94b518befc88a845c8ea1e91d1d49ca685af34e.tar.gz tde-style-qtcurve-c94b518befc88a845c8ea1e91d1d49ca685af34e.zip |
Fix FTBFS
An alternative way to compile with the original tqtinterface v3.5.13
-rw-r--r-- | common/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/common.h b/common/common.h index a9cafa9..26bf82f 100644 --- a/common/common.h +++ b/common/common.h @@ -1581,7 +1581,7 @@ static void adjustPix(unsigned char *data, int numChannels, int w, int h, int st unsigned char source=data[offset+column+1]; #if defined __cplusplus -#if TQ_BYTE_ORDER == TQ_BIG_ENDIAN +#if Q_BYTE_ORDER == Q_BIG_ENDIAN /* ARGB */ data[offset+column+1] = checkBounds(r-source); data[offset+column+2] = checkBounds(g-source); |