diff options
author | Jerzy Kozera <jerzy.kozera@gmail.com> | 2011-10-20 21:25:39 +0200 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-11-01 15:39:57 -0200 |
commit | 5e56336a558a77753b0f679477d8c9518340e7cc (patch) | |
tree | 77b5495b8e41827a5d3b28145f7500445ae3f5f6 | |
parent | 0c7399f821843326510b9cdb2c4d967fc2ea64a4 (diff) | |
download | pyside-5e56336a558a77753b0f679477d8c9518340e7cc.tar.gz pyside-5e56336a558a77753b0f679477d8c9518340e7cc.tar.xz pyside-5e56336a558a77753b0f679477d8c9518340e7cc.zip |
Fixed compilation error for gcc versions < 4
Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>
Marcelo Lira <marcelo.lira@openbossa.org>
-rw-r--r-- | libpyside/pysidemacros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpyside/pysidemacros.h b/libpyside/pysidemacros.h index fb5914f..17f9817 100644 --- a/libpyside/pysidemacros.h +++ b/libpyside/pysidemacros.h @@ -40,7 +40,7 @@ #define PYSIDE_DEPRECATED(func) func __attribute__ ((deprecated)) #else #define PYSIDE_API - #define DEPRECATED(func) func + #define PYSIDE_DEPRECATED(func) func #endif #endif |