Redact all mention of PanoramiX from user strings.
This commit is contained in:
		
							parent
							
								
									eb8dc11d19
								
							
						
					
					
						commit
						62cfe88638
					
				| 
						 | 
					@ -463,10 +463,8 @@ void PanoramiXExtensionInit(int argc, char *argv[])
 | 
				
			||||||
				ProcPanoramiXDispatch,
 | 
									ProcPanoramiXDispatch,
 | 
				
			||||||
				SProcPanoramiXDispatch, PanoramiXResetProc, 
 | 
									SProcPanoramiXDispatch, PanoramiXResetProc, 
 | 
				
			||||||
				StandardMinorOpcode);
 | 
									StandardMinorOpcode);
 | 
				
			||||||
	if (!extEntry) {
 | 
						if (!extEntry)
 | 
				
			||||||
	    ErrorF("PanoramiXExtensionInit(): failed to AddExtension\n");
 | 
					 | 
				
			||||||
	    break;
 | 
						    break;
 | 
				
			||||||
 	}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 *	First make sure all the basic allocations succeed.  If not,
 | 
						 *	First make sure all the basic allocations succeed.  If not,
 | 
				
			||||||
| 
						 | 
					@ -514,7 +512,7 @@ void PanoramiXExtensionInit(int argc, char *argv[])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (!success) {
 | 
					    if (!success) {
 | 
				
			||||||
	noPanoramiXExtension = TRUE;
 | 
						noPanoramiXExtension = TRUE;
 | 
				
			||||||
	ErrorF("%s Extension failed to initialize\n", PANORAMIX_PROTOCOL_NAME);
 | 
						ErrorF(PANORAMIX_PROTOCOL_NAME " extension failed to initialize\n");
 | 
				
			||||||
	return;
 | 
						return;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
| 
						 | 
					@ -604,14 +602,14 @@ Bool PanoramiXCreateConnectionBlock(void)
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if(!PanoramiXNumDepths) {
 | 
					    if(!PanoramiXNumDepths) {
 | 
				
			||||||
	ErrorF("PanoramiX error: Incompatible screens. No common visuals\n");
 | 
						ErrorF("Xinerama error: No common visuals\n");
 | 
				
			||||||
	return FALSE;
 | 
						return FALSE;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    for(i = 1; i < screenInfo.numScreens; i++) {
 | 
					    for(i = 1; i < screenInfo.numScreens; i++) {
 | 
				
			||||||
	pScreen = screenInfo.screens[i];
 | 
						pScreen = screenInfo.screens[i];
 | 
				
			||||||
	if(pScreen->rootDepth != screenInfo.screens[0]->rootDepth) {
 | 
						if(pScreen->rootDepth != screenInfo.screens[0]->rootDepth) {
 | 
				
			||||||
	    ErrorF("PanoramiX error: Incompatible screens. Root window depths differ\n");
 | 
						    ErrorF("Xinerama error: Root window depths differ\n");
 | 
				
			||||||
	    return FALSE;
 | 
						    return FALSE;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if(pScreen->backingStoreSupport != screenInfo.screens[0]->backingStoreSupport)
 | 
						if(pScreen->backingStoreSupport != screenInfo.screens[0]->backingStoreSupport)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue