aboutsummaryrefslogtreecommitdiff
path: root/generic/Text.c
diff options
context:
space:
mode:
authorlecoanet2005-02-12 14:30:20 +0000
committerlecoanet2005-02-12 14:30:20 +0000
commitfd2428a794d4f44ac9ac899efddfc7d51a332ddf (patch)
tree3c67293f47ec07aacc4fbe92a42a214f3549dac1 /generic/Text.c
parente1ed2c6d78bb616e24166c13126adba1b95ea4ea (diff)
downloadtkzinc-fd2428a794d4f44ac9ac899efddfc7d51a332ddf.zip
tkzinc-fd2428a794d4f44ac9ac899efddfc7d51a332ddf.tar.gz
tkzinc-fd2428a794d4f44ac9ac899efddfc7d51a332ddf.tar.bz2
tkzinc-fd2428a794d4f44ac9ac899efddfc7d51a332ddf.tar.xz
Fixed the __unused macro to avoid a clash with dummy variables used in 64 bits headers
Diffstat (limited to 'generic/Text.c')
-rw-r--r--generic/Text.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/generic/Text.c b/generic/Text.c
index 0ab886b..753962c 100644
--- a/generic/Text.c
+++ b/generic/Text.c
@@ -171,8 +171,8 @@ static ZnAttrConfig text_attrs[] = {
*/
static int
Init(ZnItem item,
- int *argc __unused,
- Tcl_Obj *CONST *args[] __unused)
+ int *argc __znunused,
+ Tcl_Obj *CONST *args[] __znunused)
{
ZnWInfo *wi = item->wi;
TextItem text = (TextItem) item;
@@ -373,7 +373,7 @@ Configure(ZnItem item,
*/
static int
Query(ZnItem item,
- int argc __unused,
+ int argc __znunused,
Tcl_Obj *CONST argv[])
{
if (ZnQueryAttribute(item->wi->interp, item, text_attrs, argv[0]) == TCL_ERROR) {
@@ -543,7 +543,7 @@ ComputeSelection(ZnItem item,
*/
static void
ComputeCoordinates(ZnItem item,
- ZnBool force __unused)
+ ZnBool force __znunused)
{
ZnWInfo *wi = item->wi;
TextItem text = (TextItem) item;
@@ -1280,7 +1280,7 @@ Render(ZnItem item)
}
#else
static void
-Render(ZnItem item __unused)
+Render(ZnItem item __znunused)
{
}
#endif
@@ -1295,7 +1295,7 @@ Render(ZnItem item __unused)
*/
static ZnBool
IsSensitive(ZnItem item,
- int item_part __unused)
+ int item_part __znunused)
{
return (ISSET(item->flags, ZN_SENSITIVE_BIT) &&
item->parent->class->IsSensitive(item->parent, ZN_NO_PART));
@@ -1366,8 +1366,8 @@ Pick(ZnItem item,
**********************************************************************************
*/
static void
-PostScript(ZnItem item __unused,
- ZnBool prepass __unused)
+PostScript(ZnItem item __znunused,
+ ZnBool prepass __znunused)
{
}
@@ -1428,11 +1428,11 @@ GetClipVertices(ZnItem item,
*/
static int
Coords(ZnItem item,
- int contour __unused,
- int index __unused,
+ int contour __znunused,
+ int index __znunused,
int cmd,
ZnPoint **pts,
- char **controls __unused,
+ char **controls __znunused,
unsigned int *num_pts)
{
TextItem text = (TextItem) item;
@@ -1642,7 +1642,7 @@ MoveFromIndex(TextItem text,
static int
Index(ZnItem item,
- int field __unused,
+ int field __znunused,
Tcl_Obj *index_spec,
int *index)
{
@@ -1748,7 +1748,7 @@ Index(ZnItem item,
*/
static void
InsertChars(ZnItem item,
- int field __unused,
+ int field __znunused,
int *index,
char *chars)
{
@@ -1812,7 +1812,7 @@ InsertChars(ZnItem item,
*/
static void
DeleteChars(ZnItem item,
- int field __unused,
+ int field __znunused,
int *first,
int *last)
{
@@ -1900,7 +1900,7 @@ DeleteChars(ZnItem item,
*/
static void
TextCursor(ZnItem item,
- int field __unused,
+ int field __znunused,
int index)
{
TextItem text = (TextItem) item;
@@ -1926,7 +1926,7 @@ TextCursor(ZnItem item,
*/
static int
Selection(ZnItem item,
- int field __unused,
+ int field __znunused,
int offset,
char *chars,
int max_bytes)