- remove unneeded patch, has been applied to trunk
This commit is contained in:
Stephan Raue 2009-11-16 04:27:17 +01:00
parent 0cddb1fd1a
commit 7fcb7a234f

View File

@ -1,42 +0,0 @@
diff -Naur xbmc-24229/xbmc-xrandr.c xbmc-24229.patch/xbmc-xrandr.c
--- xbmc-24229/xbmc-xrandr.c 2009-11-03 10:49:57.326407887 +0100
+++ xbmc-24229.patch/xbmc-xrandr.c 2009-11-03 12:26:47.836525466 +0100
@@ -190,7 +190,7 @@
#if HAS_RANDR_1_2
typedef enum _policy {
- clone, extend
+ cloned, extend
} policy_t;
typedef enum _relation {
@@ -1576,7 +1576,7 @@
int ret = 0;
#if HAS_RANDR_1_2
output_t *output = NULL;
- policy_t policy = clone;
+ policy_t policy = cloned;
Bool setit_1_2 = False;
Bool query_1_2 = False;
Bool modeit = False;
@@ -1837,7 +1837,7 @@
continue;
}
if (!strcmp ("--clone", argv[i])) {
- policy = clone;
+ policy = cloned;
setit_1_2 = True;
continue;
}
@@ -2269,9 +2269,9 @@
printf ("\tClones: ");
for (j = 0; j < output_info->nclone; j++)
{
- output_t *clone = find_output_by_xid (output_info->clones[j]);
+ output_t *cloned = find_output_by_xid (output_info->clones[j]);
- if (clone) printf (" %s", clone->output.string);
+ if (cloned) printf (" %s", cloned->output.string);
}
printf ("\n");
if (output->crtc_info)