wmshutdown: Use const in XPM image. The function gdk_pixbuf_new_from_xpm_data expects a const char, and so previously we had a compiler warning.
This commit is contained in:
		
							parent
							
								
									c177247360
								
							
						
					
					
						commit
						2ef4549500
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
/* XPM */
 | 
					/* XPM */
 | 
				
			||||||
static char * image_name[] = {
 | 
					static const char * image_name[] = {
 | 
				
			||||||
"48 48 234 2",
 | 
					"48 48 234 2",
 | 
				
			||||||
"  	c #C71BCB2BC71B",
 | 
					"  	c #C71BCB2BC71B",
 | 
				
			||||||
". 	c #BEFBBEFBBEFB",
 | 
					". 	c #BEFBBEFBBEFB",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue